Skip to content

Commit

Permalink
Make Linux aarch64 binaries on release too
Browse files Browse the repository at this point in the history
Fixes: #417
  • Loading branch information
saghul committed May 28, 2024
1 parent 3eaea6c commit c100655
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,34 @@ on:
- "v*.*.*"

jobs:
linux-aarch64:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: jirutka/setup-alpine@v1
with:
arch: aarch64
packages: "build-base make cmake"
- name: build
shell: alpine.sh {0}
run: |
mkdir build
cd build
cmake -DBUILD_STATIC_QJS_EXE=ON ..
cd ..
cmake --build build --target qjs_exe -j$(getconf _NPROCESSORS_ONLN)
cmake --build build --target qjsc -j$(getconf _NPROCESSORS_ONLN)
mv build/qjs build/qjs-linux-aarch64
mv build/qjsc build/qjsc-linux-aarch64
- name: check
shell: alpine.sh {0}
run: |
file build/*-linux-aarch64
- name: upload
uses: actions/upload-artifact@v3
with:
name: qjs
path: build/*-linux-aarch64
linux-x86:
runs-on: ubuntu-20.04
steps:
Expand All @@ -28,7 +56,7 @@ jobs:
- name: check
shell: alpine.sh {0}
run: |
file build/qjs-linux-x86 build/qjsc-linux-x86
file build/*-linux-x86
- name: upload
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -57,7 +85,7 @@ jobs:
- name: check
shell: alpine.sh {0}
run: |
file build/qjs-linux-x86_64 build/qjsc-linux-x86_64
file build/*-linux-x86_64
- name: upload
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit c100655

Please sign in to comment.