File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -275,16 +275,15 @@ jobs:
275
275
- run : docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
276
276
if : ${{ contains(matrix.target, 'armv7') }}
277
277
- name : Test bindings
278
+ if : matrix.target != 'x86_64-unknown-linux-gnu'
278
279
uses : addnab/docker-run-action@v3
279
280
with :
280
281
image : ${{ steps.docker.outputs.IMAGE }}
281
282
options : ' -v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }} --platform ${{ steps.docker.outputs.PLATFORM }}'
282
- run : |
283
- node -e "
284
- console.log('process.arch:', process.arch);
285
- console.log('process.platform:', process.platform);
286
- "
287
- yarn test
283
+ run : yarn test
284
+ - name : Test x86_64-unknown-linux-gnu
285
+ if : matrix.target == 'x86_64-unknown-linux-gnu'
286
+ run : yarn test
288
287
publish :
289
288
name : Publish
290
289
if : startsWith(github.ref, 'refs/tags/')
You can’t perform that action at this time.
0 commit comments