Skip to content

Commit

Permalink
pls
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyzha0 committed Jun 11, 2024
1 parent d0d6ad0 commit 4b92022
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
target: x86_64-apple-darwin
- host: macos-latest
target: aarch64-apple-darwin
- host: ubuntu-22.04
- host: ubuntu-20.04
target: x86_64-unknown-linux-gnu
name: Build and test on ${{ matrix.settings.target }}
runs-on: ${{ matrix.settings.host }}
Expand Down Expand Up @@ -64,6 +64,8 @@ jobs:
npm run build &&
strip -x *.node
shell: bash
- name: Dump GLIBC symbols
run: objdump -T *.node | grep GLIBC | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -Vu
- name: Test bindings
run: npm run test
- name: Upload artifact
Expand All @@ -75,7 +77,7 @@ jobs:

publish:
name: Publish
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/main'
needs:
- build-test
Expand Down

0 comments on commit 4b92022

Please sign in to comment.