Skip to content
Merged
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
13 changes: 3 additions & 10 deletions .github/workflows/verus-update-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,14 @@ jobs:
# Discard any uncommitted changes in tools/verus before upgrade
git -C tools/verus reset --hard HEAD
cargo dv bootstrap --upgrade --test_branch
make 2>&1 | tee verus_main.log
if grep -q "error:" verus_main.log; then
echo "::error title=Main Branch Verification Failed::Errors found in main branch"
grep "error:" verus_main.log | while read line; do
echo "::error::$line"
done
set -o pipefail
if ! make 2>&1; then
echo "❌ Verification failed"
exit 1
else
echo "✅ Main branch verification passed!"
fi

- name: Cleanup logs
if: always()
run: rm -f verus_main.log

- name: Dispatch back to fork for promotion
if: success()
uses: peter-evans/repository-dispatch@v2
Expand Down