-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now the examples has a job, and building the examples in Ferrocene has a job.
- Loading branch information
1 parent
2b81db5
commit e68ef98
Showing
5 changed files
with
123 additions
and
28 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
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,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
# Build qemu Aarch64 Armv8-A example | ||
pushd ./qemu-aarch64v8a | ||
criticalup install | ||
./build.sh "$(criticalup which rustc)" | ||
criticalup run cargo build --release | ||
criticalup run cargo clean | ||
popd | ||
# And the qemu Aarch32 Armv8-R/Armv7-R example | ||
pushd ./qemu-aarch32v78r | ||
criticalup install | ||
./build.sh "$(criticalup which rustc)" | ||
criticalup run cargo build --release | ||
criticalup run cargo build --target=armv7r-none-eabihf --release | ||
criticalup run cargo clean | ||
popd |
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
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