| set -uxo pipefail | |
| cd /workspace | |
| git config --global --add safe.directory /workspace | |
| mkdir -p /logs/verifier | |
| git add -A | |
| git diff --cached bc427faf6cffe5f64e44111e2c7fd0182785e3bc > /tmp/predicted.patch | |
| : 'START_VERIFY_OUTPUT' | |
| python3 /verifier/verifier.py \ | |
| /verifier/oracle.patch \ | |
| /tmp/predicted.patch \ | |
| /verifier/instruction.md | |
| : 'END_VERIFY_OUTPUT' | |
| exit 0 | |