Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux ARM64 artifact build #25

Merged
merged 15 commits into from
Sep 14, 2024
Next Next commit
test linux-arm64
  • Loading branch information
olomix committed Sep 11, 2024
commit 04477bfefc47f68df0da4b0fd71b4f85ae9e720d
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ on:
push:
branches:
- main
- build
pull_request:

jobs:
build-linux-2:
runs-on: ubuntu-22.04
steps:
- run: docker run --platform=linux/arm64 ubuntu uname -a

build-linux:
runs-on: ubuntu-22.04
if: false
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -162,8 +169,19 @@ jobs:
zip -r rapidsnark-linux-x86_64-${{ github.ref_name }}.zip rapidsnark-linux-x86_64-${{ github.ref_name }}
gh release upload ${{ github.event.release.tag_name }} rapidsnark-linux-x86_64-${{ github.ref_name }}.zip

build-apple-1:
runs-on: macos-14
steps:
- run: uname -a

build-apple-2:
runs-on: macos-13
steps:
- run: uname -a

build-apple-arm64:
runs-on: macos-13-xlarge
if: false
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -276,6 +294,7 @@ jobs:

build-apple-x86_64:
runs-on: macos-13
if: false
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading