We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 704a5dc commit 771bcadCopy full SHA for 771bcad
1 file changed
.github/workflows/build.yml
@@ -11,16 +11,33 @@ on:
11
env:
12
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13
14
+ config:
15
+ - runner: ubuntu-20.04
16
+ image: ubuntu:20.04
17
+ - runner: ubuntu-22.04-arm
18
+ image: ubuntu:22.04
19
+
20
21
jobs:
22
build:
- runs-on: ubuntu-20.04
23
+ runs-on: ${{ matrix.config.runner }}
24
+ strategy:
25
+ matrix:
26
27
28
29
30
31
container:
- image: ubuntu:20.04
32
+ image: ${{ matrix.config.image }}
33
options: --privileged
34
steps:
35
- name: Checkout code
36
uses: actions/checkout@v4
37
38
+ - name: Print configuration
39
+ run: echo "Running build on ${{ matrix.config }}"
40
41
- name: Install dependencies
42
run: |
43
apt-get update
0 commit comments