Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,4 @@ jobs:
path: |
_artifacts/
retention-days: 7
if: always()
8 changes: 5 additions & 3 deletions build-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -277,12 +277,14 @@ for TREZOR_MODEL in ${MODELS[@]}; do
$GIT_CLEAN_REPO
rm -rf /build/*
uv run make clean vendor $MAKE_TARGETS QUIET_MODE=1
for item in bootloader secmon firmware prodtest; do
for item in bootloader secmon kernel firmware prodtest; do
if [ -s build/\$item/\$item.bin ]; then
uv run ../python/tools/firmware-fingerprint.py \
-o build/\$item/\$item.bin.fingerprint \
build/\$item/\$item.bin

build/\$item/\$item.bin \
|| echo "No fingerprint for build/\$item/\$item.bin"
fi
if [ -d build/\$item/ ]; then
Comment thread
romanz marked this conversation as resolved.
# copy only the artifacts to the build output directory
mkdir /build/\$item/
cp -v build/\$item/\$item* /build/\$item/
Expand Down
Loading