Compile rust as runner

This commit is contained in:
Vrganj 2021-01-17 13:50:40 +00:00
parent be4e0776b6
commit 14565b16e4
4 changed files with 20 additions and 14 deletions

View file

@ -1,2 +1,6 @@
cd /tmp/$2
runuser runner$1 -c "cd /tmp/$2 ; timeout -s KILL 3 python3 -m paradoc code.code <<< args.args"
#!/bin/bash
runuser runner$1 -c "
cd /tmp/$2
timeout -s KILL 3 python3 -m paradoc code.code < args.args
"

View file

@ -1,9 +1,7 @@
#!/bin/bash
cd /tmp/$2
rustc -o binary code.code
runuser runner$1 -c "
cd /tmp/$2
rustc -o binary code.code
timeout -s KILL 3 xargs -a args.args -d '\n' ./binary < stdin.stdin
"