Skip to content

Commit 4ce650f

Browse files
committed
add freenet ping app cross-compilation
1 parent 1e867dc commit 4ce650f

File tree

3 files changed

+256
-68
lines changed

3 files changed

+256
-68
lines changed

.github/workflows/cross-compile.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,17 @@ jobs:
4242
name: binaries-x86_64-fdev
4343
path: target/release/fdev
4444

45+
- name: Build freenet-ping
46+
run: |
47+
cd apps/freenet-ping/app
48+
cargo build --release
49+
50+
- name: Upload freenet-ping binary
51+
uses: actions/upload-artifact@v4
52+
with:
53+
name: binaries-x86_64-freenet-ping
54+
path: apps/freenet-ping/target/release/freenet-ping
55+
4556
build-arm64:
4657
name: Build for aarch64-unknown-linux-gnu
4758

@@ -73,3 +84,14 @@ jobs:
7384
with:
7485
name: binaries-arm64-fdev
7586
path: target/release/fdev
87+
88+
- name: Build freenet-ping
89+
run: |
90+
cd apps/freenet-ping/app
91+
cargo build --release
92+
93+
- name: Upload freenet-ping binary
94+
uses: actions/upload-artifact@v4
95+
with:
96+
name: binaries-arm64-freenet-ping
97+
path: apps/freenet-ping/target/release/freenet-ping

apps/freenet-ping/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)