Skip to content

Commit

Permalink
verify checksums of downloaded files in build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
memo33 authored and jflann committed Dec 18, 2024
1 parent 79da94e commit ed98e39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/scripts/compile-release-bridge-controller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ then
# download compiler if it does not yet exist
curl -L "$BUILDRULS_URL" > "$BUILDRULS_ARCHIVE"
fi
echo "08816a61cb64c80392328f874c3b5bc031580514c156839af9a8359784a72071 $BUILDRULS_ARCHIVE" | sha256sum --check
unzip -d "$TEMP" "$BUILDRULS_ARCHIVE"

# build bridge controller
Expand Down
1 change: 1 addition & 0 deletions src/scripts/compile-release-controllers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ then
# download compiler if it does not yet exist
curl -L "$COMPILER_URL" > "$COMPILER_ARCHIVE"
fi
echo "66fb918af3791d4e9f2ab04580e26863d7882fec16b4bdd571bdeeb340b6cfe5 $COMPILER_ARCHIVE" | sha256sum --check
unzip -d "$TEMP" "$COMPILER_ARCHIVE"


Expand Down
1 change: 1 addition & 0 deletions src/scripts/compile-release-inruls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ then
# download compiler if it does not yet exist
curl -L "$BUILDRULS_URL" > "$BUILDRULS_ARCHIVE"
fi
echo "08816a61cb64c80392328f874c3b5bc031580514c156839af9a8359784a72071 $BUILDRULS_ARCHIVE" | sha256sum --check
unzip -d "$TEMP" "$BUILDRULS_ARCHIVE"

# build all INRULs
Expand Down

0 comments on commit ed98e39

Please sign in to comment.