Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jaisnan committed Sep 6, 2024
1 parent 3c83c5c commit 614af49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kani.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
submodules: true

- name: Run Kani Script
run: bash ./head/scripts/check_kani.sh ${{github.workspace}}/head
run: bash ./head/run-kani.sh ${{github.workspace}}/head
55 changes: 0 additions & 55 deletions scripts/check_kani.sh

This file was deleted.

6 changes: 3 additions & 3 deletions scripts/run_update_with_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ fi
# Checking compatiblity with kani
echo "Checking compatiblity with kani..."
source $BASE_HOME_DIR/run-kani.sh "$TEMP_HOME_DIR"
check_kani=("$?")
if [ "${#check_kani[@]}" -eq 0 ]; then
echo "check_kani.sh failed to run."
run_kani=("$?")
if [ "${#run_kani[@]}" -eq 0 ]; then
echo "run_kani.sh failed to run."
exit 1
else
echo "Changes compatible with kani's features/verify-std branch."
Expand Down

0 comments on commit 614af49

Please sign in to comment.