Skip to content

Commit

Permalink
Merge pull request #13 from dusk-network/add-arm-linux-support
Browse files Browse the repository at this point in the history
Add ARM/Linux support
  • Loading branch information
HDauven authored Dec 4, 2024
2 parents c5535d8 + 0c2129c commit 1104030
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/dusk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,17 @@ jobs:
x86_64-unknown-linux-gnu,
x86_64-apple-darwin,
aarch64-apple-darwin,
aarch64-unknown-linux-gnu,
]
include:
- os: ubuntu-latest
- os: linux-gh-4-16-150
target: x86_64-unknown-linux-gnu
- os: macos-latest-large
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,11 +37,11 @@ jobs:
fetch-depth: 16

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

- name: Install dependencies
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-latest-large' || matrix.os == 'macos-latest-xlarge'
run: brew install ninja openssl@3

- name: Run build
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 1104030

Please sign in to comment.