From 31950487b94aafa3fb06fbcdb5af9d33e4fddc71 Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Tue, 11 Jun 2024 16:48:36 -0700 Subject: [PATCH] 3.0.5 try ubuntu 20.04, dump symbols (#33) --- .github/workflows/CI.yml | 6 ++++-- npm/darwin-arm64/package.json | 2 +- npm/darwin-x64/package.json | 2 +- npm/linux-x64-gnu/package.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1254158..77c69e3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 }} @@ -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 @@ -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 diff --git a/npm/darwin-arm64/package.json b/npm/darwin-arm64/package.json index 7312f2a..f32502a 100644 --- a/npm/darwin-arm64/package.json +++ b/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@replit/ruspty-darwin-arm64", - "version": "3.0.4", + "version": "3.0.5", "os": [ "darwin" ], diff --git a/npm/darwin-x64/package.json b/npm/darwin-x64/package.json index b1a7a08..94b0b3b 100644 --- a/npm/darwin-x64/package.json +++ b/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@replit/ruspty-darwin-x64", - "version": "3.0.4", + "version": "3.0.5", "os": [ "darwin" ], diff --git a/npm/linux-x64-gnu/package.json b/npm/linux-x64-gnu/package.json index f07310a..5f98843 100644 --- a/npm/linux-x64-gnu/package.json +++ b/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@replit/ruspty-linux-x64-gnu", - "version": "3.0.4", + "version": "3.0.5", "os": [ "linux" ], diff --git a/package-lock.json b/package-lock.json index 2cab91f..9c50be2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@replit/ruspty", - "version": "3.0.4", + "version": "3.0.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@replit/ruspty", - "version": "3.0.4", + "version": "3.0.5", "license": "MIT", "devDependencies": { "@napi-rs/cli": "^2.18.2", diff --git a/package.json b/package.json index 0445d5e..f9620c7 100644 --- a/package.json +++ b/package.json @@ -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 ",