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 cb4e88a347e4c6ca8ed1103fc5e9adaa6fa27a1f > /tmp/predicted.patch
: 'START_VERIFY_OUTPUT'
python3 /verifier/verifier.py \
    /verifier/oracle.patch \
    /tmp/predicted.patch \
    /verifier/instruction.md
: 'END_VERIFY_OUTPUT'
exit 0