Skip to content

Commit

Permalink
3.0.5 try ubuntu 20.04, dump symbols (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyzha0 authored Jun 11, 2024
1 parent d0d6ad0 commit 3195048
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 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
2 changes: 1 addition & 1 deletion npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty-darwin-arm64",
"version": "3.0.4",
"version": "3.0.5",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty-darwin-x64",
"version": "3.0.4",
"version": "3.0.5",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty-linux-x64-gnu",
"version": "3.0.4",
"version": "3.0.5",
"os": [
"linux"
],
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replit/ruspty",
"version": "3.0.4",
"version": "3.0.5",
"main": "dist/wrapper.js",
"types": "dist/wrapper.d.ts",
"author": "Szymon Kaliski <[email protected]>",
Expand Down

0 comments on commit 3195048

Please sign in to comment.