Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
RUSTUP_IO_THREADS: 1
with:
operating_system: freebsd
version: '14.2'
version: '15.0'
memory: 8G
cpu_count: 3
environment_variables: DEBUG RUSTUP_IO_THREADS
Expand Down Expand Up @@ -355,13 +355,14 @@ jobs:
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
if: ${{ !contains(matrix.target, 'aarch64') }}
- name: Test bindings
uses: addnab/docker-run-action@v3
uses: tj-actions/docker-run@v2
# Node.js on qemu randomly segfaults on powerpc64le
continue-on-error: ${{ matrix.target == 'powerpc64le-unknown-linux-gnu' }}
with:
image: ${{ steps.docker.outputs.IMAGE }}
name: test-${{ matrix.target }}-${{ matrix.node }}
options: -v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }} --platform ${{ steps.docker.outputs.PLATFORM }}
run: yarn run test
args: yarn run test

test-nodejs-wasi:
name: Test bindings on wasm32-wasi - node@${{ matrix.node }}
Expand Down
Loading