This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to action-rs/toolchain for linux builds
Rather than relying on static Docker images for building Linux binaries, we now use action-rs/toolchain. This makes for much better upgrade of Rust, without having to rebuild and redeploy images. Before, deb packages were built with musl as static binaries, but since musl on arm7 is involved, both debian packages are now dynamicly linked. The amd64 static binary is built with musl and is statically linked.
- Loading branch information
Wouter de Bie
committed
Aug 23, 2021
1 parent
e689218
commit 1d45749
Showing
3 changed files
with
76 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[target.armv7-unknown-linux-gnueabihf] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
strip = { path = "arm-linux-gnueabihf-strip" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters