forked from onepub-dev/dcli
-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·224 lines (206 loc) · 6.78 KB
/
workflow.yaml
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
name: Compose, Dockerize, and Deploy Modules on all Platforms
on:
push:
branches:
- aot_monorepo_compat
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
define-matrices:
name: Setup Matrix
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config:
- {
platforms: [
{
runner: macos-13-xlarge,
refined_matrix: macos_apple_silicon,
name: macOS (Apple Silicon),
system_information: {
operating_system_family: macos,
kernel_architecture: arm64,
kernel_family: unix
},
architecture: {
dart: arm64,
}
},
{
runner: macos-13-large,
refined_matrix: macos_intel,
name: macOS (Intel),
system_information: {
operating_system_family: macos,
kernel_architecture: x86_64,
kernel_family: unix
},
architecture: {
dart: x64,
}
},
{
runner: aot-linux-runner,
refined_matrix: ubuntu,
name: Ubuntu,
system_information: {
operating_system_family: linux,
kernel_architecture: x86_64,
kernel_family: unix
},
architecture: {
dart: x64,
}
},
{
runner: aot-windows-x64-runner,
refined_matrix: windows,
name: Windows,
system_information: {
operating_system_family: windows,
kernel_architecture: x86_64,
kernel_family: windows_nt
},
architecture: {
dart: x64,
}
}
]
}
steps:
- name: Install jq
run: |
if ! command -v jq &> /dev/null; then
sudo apt-get update
sudo apt-get install -y jq
fi
- name: Output Matrices
id: matrices
run: |
configurations=$(jq -c '.' <<< '${{ toJSON(matrix.config.platforms) }}')
echo "metricized=$configurations" >> $GITHUB_OUTPUT
- name: Output Refined Matrix
id: refined
run: |
matrix_names=("macos_intel" "macos_apple_silicon" "ubuntu" "windows")
for name in "${matrix_names[@]}"; do
echo "${name}_matrix=$(jq -c ".[] | select(.refined_matrix == \"${name}\")" <<< '${{ steps.matrices.outputs.metricized }}')" >> $GITHUB_OUTPUT
done
- name: Echo Matrices Outputs
run: |
echo 'macos_intel_matrix=${{ steps.refined.outputs.macos_intel_matrix }}'
echo 'macos_apple_silicon_matrix="${{ steps.refined.outputs.macos_apple_silicon_matrix }}"'
echo 'ubuntu_matrix="${{ steps.refined.outputs.ubuntu_matrix }}"'
echo 'windows_matrix="${{ steps.refined.outputs.windows_matrix }}"'
outputs:
MACOS_INTEL_MATRIX: ${{ steps.refined.outputs.macos_intel_matrix }}
MACOS_APPLE_SILICON_MATRIX: ${{ steps.refined.outputs.macos_apple_silicon_matrix }}
UBUNTU_MATRIX: ${{ steps.refined.outputs.ubuntu_matrix }}
WINDOWS_MATRIX: ${{ steps.refined.outputs.windows_matrix }}
macos-apple-silicon-matrix:
name: Setup ${{ matrix.config.name }} Matrix
needs:
- define-matrices
strategy:
fail-fast: false
matrix:
config:
- ${{ fromJSON(needs.define-matrices.outputs.MACOS_APPLE_SILICON_MATRIX) }}
runs-on: ubuntu-latest
steps:
- name: Output Matrices
id: matrices
run: |
configuration=$(jq -c '.' <<< '${{ toJSON(matrix.config) }}')
echo "metricized=$configuration" >> $GITHUB_OUTPUT
outputs:
MATRIX_CONFIG: ${{ steps.matrices.outputs.metricized }}
macos-intel-matrix:
name: Setup ${{ matrix.config.name }} Matrix
needs:
- define-matrices
strategy:
fail-fast: false
matrix:
config:
- ${{ fromJSON(needs.define-matrices.outputs.MACOS_INTEL_MATRIX) }}
runs-on: ubuntu-latest
steps:
- name: Output Matrices
id: matrices
run: |
configuration=$(jq -c '.' <<< '${{ toJSON(matrix.config) }}')
echo "metricized=$configuration" >> $GITHUB_OUTPUT
outputs:
MATRIX_CONFIG: ${{ steps.matrices.outputs.metricized }}
ubuntu-matrix:
name: Setup ${{ matrix.config.name }} Matrix
needs:
- define-matrices
strategy:
fail-fast: false
matrix:
config:
- ${{ fromJSON(needs.define-matrices.outputs.UBUNTU_MATRIX) }}
runs-on: ubuntu-latest
steps:
- name: Output Matrices
id: matrices
run: |
configuration=$(jq -c '.' <<< '${{ toJSON(matrix.config) }}')
echo "metricized=$configuration" >> $GITHUB_OUTPUT
outputs:
MATRIX_CONFIG: ${{ steps.matrices.outputs.metricized }}
windows-matrix:
name: Setup ${{ matrix.config.name }} Matrix
needs:
- define-matrices
strategy:
fail-fast: false
matrix:
config:
- ${{ fromJSON(needs.define-matrices.outputs.WINDOWS_MATRIX) }}
runs-on: ubuntu-latest
steps:
- name: Output Matrices
id: matrices
run: |
configuration=$(jq -c '.' <<< '${{ toJSON(matrix.config) }}')
echo "metricized=$configuration" >> $GITHUB_OUTPUT
outputs:
MATRIX_CONFIG: ${{ steps.matrices.outputs.metricized }}
macos-apple-silicon-tests:
name: Unit Tests ${{ matrix.config.name }}
needs:
- macos-apple-silicon-matrix
uses: ./.github/workflows/reusable-package-tester.yaml
with:
matrix-config: ${{ needs.macos-apple-silicon-matrix.outputs.MATRIX_CONFIG }}
secrets: inherit
macos-intel-tests:
name: Unit Tests ${{ matrix.config.name }}
needs:
- macos-intel-matrix
uses: ./.github/workflows/reusable-package-tester.yaml
with:
matrix-config: ${{ needs.macos-intel-matrix.outputs.MATRIX_CONFIG }}
secrets: inherit
windows-tests:
name: Unit Tests ${{ matrix.config.name }}
needs:
- windows-matrix
uses: ./.github/workflows/reusable-package-tester.windows.yaml
with:
matrix-config: ${{ needs.windows-matrix.outputs.MATRIX_CONFIG }}
secrets: inherit
ubuntu-tests:
name: Unit Tests ${{ matrix.config.name }}
needs:
- ubuntu-matrix
uses: ./.github/workflows/reusable-package-tester.yaml
with:
matrix-config: ${{ needs.ubuntu-matrix.outputs.MATRIX_CONFIG }}
secrets: inherit