Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ga/latest/kernel/Dockerfile.ubuntu.openjdk11
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ibm-semeru-runtimes:open-11-jre-focal
FROM ibm-semeru-runtimes:open-11-jre-jammy

USER root

Expand Down
2 changes: 1 addition & 1 deletion ga/latest/kernel/Dockerfile.ubuntu.openjdk17
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ibm-semeru-runtimes:open-17-jre-focal
FROM ibm-semeru-runtimes:open-17-jre-jammy

USER root

Expand Down
6 changes: 3 additions & 3 deletions test/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ main () {

local tests=$(declare -F | cut -d" " -f3 | grep "^test")
echo "****** Testing ${IMAGE}..."
for name in "${tests}"; do
for name in $tests; do
timestamp=$(date '+%Y/%m/%d %H:%M:%S')
echo "${timestamp} *** ${name} - Executing"
eval "${name}"
Expand Down Expand Up @@ -99,9 +99,9 @@ testLibertyStopsAndRestarts()
if [ "$1" == "OpenShift" ]; then
timestamp=$(date '+%Y/%m/%d %H:%M:%S')
echo "$timestamp *** testLibertyStopsAndRestarts on OpenShift"
cid=$(docker run -d -u 1001:0 $IMAGE)
local cid=$(docker run -d -u 1001:0 $IMAGE)
else
local cid=$(docker run -d $IMAGE)
local cid=$(docker run -d $IMAGE)
fi
echo "Waiting for server to start..."
waitForServerStart "${cid}" \
Expand Down