File size: 383 Bytes
f50dbbb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash
set -uxo pipefail
cd /workspace
git config --global --add safe.directory /workspace
mkdir -p /logs/verifier
git add -A
git diff --cached eab69168ba25196e4cc586fe8d0ff59e954f3eab > /tmp/predicted.patch
: 'START_VERIFY_OUTPUT'
python3 /verifier/verifier.py \
/verifier/oracle.patch \
/tmp/predicted.patch \
/verifier/instruction.md
: 'END_VERIFY_OUTPUT'
exit 0
|