Skip to content

Commit

Permalink
fixed sha detection
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Sep 17, 2023
1 parent 7566b89 commit 5ce443e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ for PACKAGE in $BUILD_ORDER; do

echo "$0: SHA=$SHA"

GIT_SHA_MATCHES=$(apt-cache policy $FUTURE_DEB_NAME | grep "^Candidate:" | head -n 1 | grep "git.$SHA" | wc -l)
GIT_SHA_MATCHES=$(apt-cache policy $FUTURE_DEB_NAME | grep -e "^Candidate:" | grep "git.${SHA}" | wc -l)

NEW_COMMIT=false
if [[ "$GIT_SHA_MATCHES" == "0" ]]; then
Expand Down
17 changes: 17 additions & 0 deletions nonbloom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
mrs_uav_shell_additions:
architecture: [amd64]
source: https://github.com/ctu-mrs/mrs_uav_shell_additions
unstable_ref: master
stable_ref: release

mrs_geographiclib_datasets:
architecture: [amd64]
source: https://github.com/ctu-mrs/mrs-geographiclib-datasets
unstable_ref: master
stable_ref: release

px4:
architecture: [amd64, arm64]
source: https://github.com/ctu-mrs/px4_firmware
unstable_ref: v1.13.2-dev
stable_ref: mrs_release

0 comments on commit 5ce443e

Please sign in to comment.