You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/ci.yml
+7-7
Original file line number
Diff line number
Diff line change
@@ -149,11 +149,12 @@ jobs:
149
149
fail-fast: false
150
150
matrix:
151
151
platform:
152
-
- i386
153
-
- arm32v6
154
-
- arm32v7
155
-
- arm64v8
156
-
- s390x
152
+
- linux/386
153
+
- linux/riscv64
154
+
- linux/arm64
155
+
- linux/arm/v6
156
+
- linux/arm/v7
157
+
- linux/s390x
157
158
158
159
steps:
159
160
- uses: actions/checkout@v4
@@ -162,5 +163,4 @@ jobs:
162
163
- name: Get qemu
163
164
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
164
165
- name: Run tests on ${{ matrix.platform }}
165
-
run: docker run --rm --interactive --mount type=bind,source=$(pwd),target=/host ${{ matrix.platform }}/alpine sh -c "apk add git patch make gcc libc-dev && cd /host && make test"
166
-
166
+
run: docker run --rm --interactive --mount type=bind,source=$(pwd),target=/host --platform ${{ matrix.platform }} alpine sh -c "apk add git patch make gcc libc-dev && cd /host && make test"
0 commit comments