-
Notifications
You must be signed in to change notification settings - Fork 14
81 lines (72 loc) · 2.46 KB
/
main.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
---
name: Docker Images
on:
pull_request:
push:
branches:
- main
tags:
- "v*"
workflow_dispatch:
# https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
# only cancel in-progress jobs or runs for the current workflow - matches against branch & tags
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-amd64:
uses: ./.github/workflows/build.yml
with:
runsOn: ubuntu-22.04
test-amd64:
needs: build-amd64
strategy:
fail-fast: false
matrix:
target: [base, full-stack] #[base, lab, base-with-services, full-stack]
uses: ./.github/workflows/test.yml
with:
runsOn: ubuntu-22.04
images: ${{ needs.build-amd64.outputs.images }}
target: ${{ matrix.target }}
integration: false
# To save arm64 runner resources, we only try to build once amd64 build and tests succeed
build-arm64:
needs: [build-amd64, test-amd64]
uses: ./.github/workflows/build.yml
with:
runsOn: buildjet-4vcpu-ubuntu-2204-arm
test-arm64:
needs: build-arm64
strategy:
fail-fast: false
matrix:
target: [base, full-stack] #[base, lab, base-with-services, full-stack]
uses: ./.github/workflows/test.yml
with:
runsOn: buildjet-2vcpu-ubuntu-2204-arm
images: ${{ needs.build-arm64.outputs.images }}
target: ${{ matrix.target }}
integration: false
test-integration:
needs: [build-arm64, build-amd64]
strategy:
fail-fast: false
matrix:
runsOn: [ubuntu-22.04, buildjet-2vcpu-ubuntu-2204-arm]
uses: ./.github/workflows/test.yml
with:
runsOn: ${{ matrix.runsOn}}
images: ${{ startsWith(matrix.runsOn, 'ubuntu') && needs.build-amd64.outputs.images || needs.build-arm64.outputs.images }}
target: full-stack
integration: true
publish:
if: >-
github.repository == 'aiidalab/aiidalab-docker-stack'
&& (github.ref_type == 'tag' || github.ref_name == 'main')
needs: [test-amd64, test-arm64]
uses: ./.github/workflows/publish.yml
with:
runsOn: ubuntu-22.04
images: ${{ needs.build.outputs.images }}
secrets: inherit