Skip to content

Commit

Permalink
feat: build and release for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
fbozic committed May 6, 2024
1 parent 50c377e commit 9d37f3c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,17 @@ jobs:
- name: Build for Intel Linux
run: cargo build --release --target=x86_64-unknown-linux-gnu

- name: Build for ARM Linux
- name: Build for Aarch Linux
run: cross build --release --target=aarch64-unknown-linux-gnu

- name: Build for ARMv7 Linux
run: cross build --release --target=armv7-unknown-linux-gnueabihf

- name: Create artifacts directory
run: |
mkdir -p artifacts
cp target/x86_64-unknown-linux-gnu/release/relay-server artifacts/relay-server-x86_64-unknown-linux
cp target/aarch64-unknown-linux-gnu/release/relay-server artifacts/relay-server-aarch64-unknown-linux
cp target/armv7-unknown-linux-gnueabihf/release/relay-server artifacts/relay-server-armv7-unknown-linux
- name: Create GitHub Release
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "relay-server"
version = "0.1.0"
version = "0.2.0"
authors = ["Calimero Limited <[email protected]>"]
edition = "2021"
repository = "https://github.com/calimero-network/relay-server"
Expand Down

0 comments on commit 9d37f3c

Please sign in to comment.