piston/docker/execute

59 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-09-20 04:58:50 +02:00
#!/usr/bin/env bash
2018-09-20 07:49:02 +02:00
#docker run --rm -it piston /usr/bin/python -V
#docker run --rm -it piston /usr/bin/python3 -V
#docker run --rm -it piston /usr/bin/ruby --version
#docker run --rm -it piston /usr/bin/nodejs --version
2018-09-20 19:04:34 +02:00
dir="$( cd "$( dirname "$0" )" && pwd )"
2018-09-20 07:49:02 +02:00
if [ -z "$1" ]; then
echo "invalid args"
exit
fi
if [ -z "$2" ]; then
echo "invalid args"
exit
fi
lang=$1
abs=$2
2018-09-20 04:58:50 +02:00
file=$(basename $abs)
2018-09-20 07:49:02 +02:00
bin=
case "$lang" in
"python2")
2018-09-20 19:04:34 +02:00
bin=executor_python2
2018-09-20 07:49:02 +02:00
;;
"python" | "python3")
2018-09-20 19:04:34 +02:00
bin=executor_python3
2018-09-20 07:49:02 +02:00
;;
"ruby")
bin=ruby
;;
"javascript" | "js" | "node")
bin=nodejs
;;
2018-09-20 19:04:34 +02:00
"c")
bin=executor_c
;;
"cpp" | "c++")
bin=executor_cpp
;;
2018-09-20 07:49:02 +02:00
*)
echo "invalid language"
exit
esac
2018-09-20 04:58:50 +02:00
docker run \
2018-09-20 07:49:02 +02:00
-m 16m \
--cpus=".5" \
2018-09-20 04:58:50 +02:00
--rm \
-v $abs:/$file \
2018-09-20 19:04:34 +02:00
-v $dir/executors/python2:/executor_python2 \
-v $dir/executors/python3:/executor_python3 \
-v $dir/executors/c:/executor_c \
-v $dir/executors/cpp:/executor_cpp \
2018-09-20 07:49:02 +02:00
piston \
2018-09-20 19:04:34 +02:00
timeout -s HUP 3 /$bin /$file $file 2>&1