-
Notifications
You must be signed in to change notification settings - Fork 11
60 lines (57 loc) · 1.58 KB
/
ci.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
name: GITHUB ACTIONS CI
on:
push:
branches:
- main
- "[0-9]*.[0-9]*"
pull_request:
branches:
- main
- "[0-9]*.[0-9]*"
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-x86_64:
name: Platform (x86_64)
uses: ./.github/workflows/build.yml
with:
architecture: x86_64
runner: ubuntu-latest
secrets: inherit
build-aarch64:
name: Platform (aarch64)
uses: ./.github/workflows/build.yml
with:
architecture: aarch64
runner: ubuntu-latest
secrets: inherit
multikernel-tester-x86_64:
name: Test (x86_64)
needs:
- build-x86_64
uses: ./.github/workflows/multikernel-tester.yml
with:
architecture: x86_64
runner: ubuntu-latest
kernels: '[ "amazonlinux2", "centos", "debian", "fedora", "mainline", "rocky", "ubuntu-aws", "ubuntu-azure", "ubuntu-gcp", "ubuntu-gke", "ubuntu-oem", "ubuntu-oracle" ]'
secrets: inherit
multikernel-tester-aarch64:
name: Test (aarch64)
needs:
- build-aarch64
uses: ./.github/workflows/multikernel-tester.yml
with:
architecture: aarch64
runner: ubuntu-latest
kernels: '[ "amazonlinux2", "debian", "fedora", "mainline", "rocky", "ubuntu-aws", "ubuntu-azure", "ubuntu-gcp", "ubuntu-gke", "ubuntu-oracle" ]'
secrets: inherit
merge-auditor:
name: CI Merge Auditor
needs:
- multikernel-tester-x86_64
- multikernel-tester-aarch64
runs-on: ubuntu-latest
steps:
- name: Aggregate results
run: echo "Result - PASS"