-
-
Notifications
You must be signed in to change notification settings - Fork 27
47 lines (47 loc) · 1.4 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
44
45
46
47
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
- uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
with:
java-version: '17'
distribution: 'temurin'
- name: AQA
uses: ./
with:
version: '17'
jdksource: 'install-jdk'
build_list: 'openjdk'
target: '_jdk_custom'
envReady: 'true'