-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #358 from Nadrieril/split-charon-ci-check
- Loading branch information
Showing
3 changed files
with
26 additions
and
11 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
10 changes: 1 addition & 9 deletions
10
scripts/ci-check-charon-pin.sh → scripts/ci-check-charon-pin-is-forward.sh
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 |
---|---|---|
@@ -1,22 +1,14 @@ | ||
#!/usr/bin/env bash | ||
# Checks that the charon pin: | ||
# - moves forward from the previous pin, to ensure we don't regress the charon version; | ||
# - is merged into Charon. | ||
# Checks that the charon pin moves forward from the previous pin, to ensure we don't regress the Charon version. | ||
|
||
NEW_CHARON_PIN="$(cat flake.lock | jq -r .nodes.charon.locked.rev)" | ||
OLD_CHARON_PIN="$(git show origin/main:flake.lock | jq -r .nodes.charon.locked.rev)" | ||
echo "This PR updates the charon pin from $OLD_CHARON_PIN to $NEW_CHARON_PIN" | ||
|
||
git clone https://github.com/AeneasVerif/charon | ||
cd charon | ||
CHARON_MAIN="$(git rev-parse HEAD)" | ||
|
||
if ! git merge-base --is-ancestor "$OLD_CHARON_PIN" "$NEW_CHARON_PIN"; then | ||
echo "Error: the new charon pin does not have the old one as its ancestor. The pin must only move forward." | ||
exit 1 | ||
fi | ||
|
||
if ! git merge-base --is-ancestor "$NEW_CHARON_PIN" "$CHARON_MAIN"; then | ||
echo "Error: commit $NEW_CHARON_PIN is not merged into Charon." | ||
exit 1 | ||
fi |
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,15 @@ | ||
#!/usr/bin/env bash | ||
# Checks that the charon pin is merged into Charon. | ||
|
||
NEW_CHARON_PIN="$(cat flake.lock | jq -r .nodes.charon.locked.rev)" | ||
OLD_CHARON_PIN="$(git show origin/main:flake.lock | jq -r .nodes.charon.locked.rev)" | ||
echo "This PR updates the charon pin from $OLD_CHARON_PIN to $NEW_CHARON_PIN" | ||
|
||
git clone https://github.com/AeneasVerif/charon | ||
cd charon | ||
CHARON_MAIN="$(git rev-parse HEAD)" | ||
|
||
if ! git merge-base --is-ancestor "$NEW_CHARON_PIN" "$CHARON_MAIN"; then | ||
echo "Error: commit $NEW_CHARON_PIN is not merged into Charon." | ||
exit 1 | ||
fi |