Skip to content

test containers

test containers #370

Workflow file for this run

name: "run-aqa build with push to master"
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
openjdk_disto: # make sure build/ci work properly with other distros
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
strategy:
fail-fast: false
matrix:
image: [adoptopenjdk/alpine3_build_image]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: AQA
uses: ./
with:
version: '8'
jdksource: 'github-hosted'
build_list: 'openjdk'
target: '_jdk_custom'
test_container: # make sure build/ci work properly with other distros
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
strategy:
fail-fast: false
matrix:
image: ['ghcr.io/adoptium/test-containers:ubuntu2204']
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: AQA
uses: ./
with:
version: '8'
jdksource: 'install-jdk'
build_list: 'openjdk'
target: '_jdk_custom'
envReady: 'true'