reset the result #3754
Workflow file for this run
This file contains hidden or 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
# Alarm on changes to epoll_event_loop implementation | |
name: ProofAlarm | |
on: [push] | |
jobs: | |
check-for-changes: | |
runs-on: ubuntu-24.04 # latest | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4 | |
- name: Check | |
run: | | |
TMPFILE=$(mktemp) | |
echo "5109c3b2748a98621ebdc05756fdfa51 source/linux/epoll_event_loop.c" > $TMPFILE | |
md5sum --check $TMPFILE | |
# No further steps if successful | |
- name: Echo fail | |
if: failure() | |
run: | | |
echo "The VCC proofs are based on a snapshot of epoll_event_loop.c. | |
This push updates this file so the proofs must be rechecked to ensure they remain valid. | |
Please contact Nathan Chong. | |
You can also update md5sum value by running `md5sum source/linux/epoll_event_loop.c` if the changes are trivial." |