Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Jun 8, 2024
1 parent d036c69 commit 22799c8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/prebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ on: [push]
jobs:
build-test-macos:
if: startsWith(github.ref, 'refs/tags/')
runs-on: macos-11
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 20
- run: npm install
- run: npm test
- run: npm run prebuild-libc
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 20
- run: npm install
- run: npm run prebuild-win32
- run: tar --create --verbose --file=prebuild-win32.tar -C prebuilds .
Expand All @@ -45,7 +45,7 @@ jobs:
files: prebuild-win32.tar
build-centos-7:
#if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container: quay.io/pypa/manylinux2014_x86_64
steps:
#- run: ldd --version ldd
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 20
- run: curl https://raw.githubusercontent.com/kriszyp/musl-bins/main/aarch64-linux-musl-cross.tgz --output aarch64-linux-musl-cross.tgz
- run: tar -xf aarch64-linux-musl-cross.tgz && pwd && ls
- run: curl https://raw.githubusercontent.com/kriszyp/musl-bins/main/armv7l-linux-musleabihf-cross.tgz --output armv7l-linux-musleabihf-cross.tgz
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
files: prebuild-linux.tar
build-linux-arm:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container: quay.io/pypa/manylinux_2_24_x86_64
steps:
- run: apt-get update
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 20
- run: npm install
- run: npm run prebuild-libc
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 22799c8

Please sign in to comment.