Merge latest from master

This commit is contained in:
Geoff Bourne
2022-01-23 11:36:19 -06:00
44 changed files with 887 additions and 150 deletions

View File

@@ -8,8 +8,7 @@ on:
- java11*
- java16*
- java17*
- test/*
- fix/*
- test/**
tags:
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-java8-multiarch"
@@ -58,7 +57,7 @@ jobs:
- name: Build for test
uses: docker/build-push-action@v2.7.0
if: github.ref_name == 'master'
if: github.ref_name == 'master' || startsWith(github.ref_name, 'test/')
with:
context: .
platforms: linux/amd64
@@ -72,7 +71,7 @@ jobs:
- name: Run tests
# It is assumed that image variants are merged from master and tested there
if: github.ref_name == 'master'
if: github.ref_name == 'master' || startsWith(github.ref_name, 'test/')
run: |
tests/test.sh
@@ -83,7 +82,7 @@ jobs:
context: .
# No arm64/armv7 support: https://hub.docker.com/_/ibm-semeru-runtimes?tab=tags&page=1&name=open-17-jdk
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
push: true
tags: ${{ steps.meta.outputs.tags }}
# ensure latest base image is used
pull: true