Created
July 15, 2025 17:05
-
-
Save kdmukai/d5e64823f69127e1345ee97e8152b236 to your computer and use it in GitHub Desktop.
Build all targets for SeedSigner OS
This file contains hidden or 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
#!/bin/bash | |
# Requires: apt install time | |
export APP_REPO = https://github.com/kdmukai/seedsigner.git | |
export APP_BRANCH = 0.8.6 | |
touch results.txt | |
for device in pi0 pi02w pi2 pi4 | |
do | |
ccache -d /root/.buildroot-ccache --zero-stats | |
ccache --zero-stats | |
echo "Building for: $device" >> results.txt | |
/usr/bin/time -o results.txt -a ./build.sh --$device --app-repo=$APP_REPO --app-branch=$APP_BRANCH | |
echo "---------------------------------------------------" >> results.txt | |
ccache -d /root/.buildroot-ccache --show-stats >> results.txt | |
echo "---------------------------------------------------" >> results.txt | |
ccache --show-stats >> results.txt | |
echo "---------------------------------------------------" >> results.txt | |
echo " " >> results.txt | |
done | |
cat results.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment