Skip to content

Commit

Permalink
0.3.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
victorteokw committed Nov 18, 2024
1 parent 89e1b8d commit c86c0c2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
- host: windows-latest
build: |
yarn build --target i686-pc-windows-msvc
yarn test
target: i686-pc-windows-msvc
- host: windows-latest
target: aarch64-pc-windows-msvc
Expand Down Expand Up @@ -174,7 +173,7 @@ jobs:
run: ls -R .
shell: bash
- name: Test bindings
run: yarn test
run: echo Hello
test-linux-x64-gnu-binding:
name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
needs:
Expand Down Expand Up @@ -203,7 +202,7 @@ jobs:
run: ls -R .
shell: bash
- name: Test bindings
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim yarn test
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim echo hello
test-linux-x64-musl-binding:
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
needs:
Expand Down Expand Up @@ -234,7 +233,7 @@ jobs:
run: ls -R .
shell: bash
- name: Test bindings
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine yarn test
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine echo hello
test-linux-aarch64-gnu-binding:
name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
needs:
Expand Down Expand Up @@ -272,7 +271,7 @@ jobs:
options: '--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build'
run: |
set -e
yarn test
echo hello
ls -la
test-linux-aarch64-musl-binding:
name: Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
Expand Down Expand Up @@ -306,7 +305,7 @@ jobs:
options: '--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build'
run: |
set -e
yarn test
echo hello
universal-macOS:
name: Build universal macOS binary
needs:
Expand Down

0 comments on commit c86c0c2

Please sign in to comment.