-
-
Notifications
You must be signed in to change notification settings - Fork 27
82 lines (82 loc) · 2.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: "run-aqa build with push to master"
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
openjdk: # make sure build/ci work properly
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: AQA
uses: ./
with:
version: '11'
jdksource: 'github-hosted'
build_list: 'openjdk'
target: '_jdk_custom'
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/centos7_build_image, adoptopenjdk/alpine3_build_image]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: AQA
uses: ./
with:
version: '8'
jdksource: 'github-hosted'
build_list: 'openjdk'
target: '_jdk_custom'
functional: # make sure build/ci work properly
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: AdoptOpenJDK/install-jdk@2f15d3f82051aa50984186fc1184467d0d9f87d0 # v1.1.1
with:
version: '11'
targets: 'JDK_11'
impl: 'openj9'
source: 'nightly'
- name: AQA
uses: ./
with:
version: '11'
jdksource: 'install-jdk'
build_list: 'functional'
target: '_floatSanityTests'
system: # make sure build/ci work properly
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: AdoptOpenJDK/install-jdk@2f15d3f82051aa50984186fc1184467d0d9f87d0 # v1.1.1
with:
version: '11'
targets: 'JDK_11'
impl: 'openj9'
source: 'nightly'
- name: AQA
uses: ./
with:
version: '11'
jdksource: 'install-jdk'
build_list: 'system'
target: '_DaaLoadTest_daa1_5m'