-
-
Notifications
You must be signed in to change notification settings - Fork 27
43 lines (43 loc) · 1.24 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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: 'github-hosted'
build_list: 'openjdk'
target: '_jdk_custom'
envReady: 'true'