Skip to content

Commit 9d37f3c

Browse files
committed
feat: build and release for aarch64
1 parent 50c377e commit 9d37f3c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/release.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,17 @@ jobs:
5454
- name: Build for Intel Linux
5555
run: cargo build --release --target=x86_64-unknown-linux-gnu
5656

57-
- name: Build for ARM Linux
57+
- name: Build for Aarch Linux
58+
run: cross build --release --target=aarch64-unknown-linux-gnu
59+
60+
- name: Build for ARMv7 Linux
5861
run: cross build --release --target=armv7-unknown-linux-gnueabihf
5962

6063
- name: Create artifacts directory
6164
run: |
6265
mkdir -p artifacts
6366
cp target/x86_64-unknown-linux-gnu/release/relay-server artifacts/relay-server-x86_64-unknown-linux
67+
cp target/aarch64-unknown-linux-gnu/release/relay-server artifacts/relay-server-aarch64-unknown-linux
6468
cp target/armv7-unknown-linux-gnueabihf/release/relay-server artifacts/relay-server-armv7-unknown-linux
6569
6670
- name: Create GitHub Release

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "relay-server"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Calimero Limited <info@calimero.network>"]
55
edition = "2021"
66
repository = "https://github.com/calimero-network/relay-server"

0 commit comments

Comments
 (0)