Skip to content

Commit

Permalink
Add ARM/Linux support
Browse files Browse the repository at this point in the history
  • Loading branch information
HDauven committed Dec 2, 2024
1 parent c5535d8 commit 2c782d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/dusk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
x86_64-unknown-linux-gnu,
x86_64-apple-darwin,
aarch64-apple-darwin,
aarch64-unknown-linux-gnu,
]
include:
- os: ubuntu-latest
Expand All @@ -26,6 +27,8 @@ jobs:
target: x86_64-apple-darwin
- os: macos-latest-xlarge
target: aarch64-apple-darwin
- os: arm-linux
target: aarch64-unknown-linux-gnu
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
Expand All @@ -34,7 +37,7 @@ jobs:
fetch-depth: 16

- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-latest' || matrix.os == 'arm-linux'
run: sudo apt update && sudo apt install -y ninja-build

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ target = ["wasm32-unknown-unknown", "wasm64-unknown-unknown"]

# If a build of LLVM is available for the CI use it
[llvm]
download-ci-llvm = "if-available"
download-ci-llvm = false

[rust]
# We have several defaults in bootstrap that depend on whether the channel
Expand Down

0 comments on commit 2c782d5

Please sign in to comment.