piston/docker/execute

68 lines
1.2 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")
2018-09-21 04:36:21 +02:00
bin=executor_ruby
2018-09-20 07:49:02 +02:00
;;
"javascript" | "js" | "node")
2018-09-21 04:36:21 +02:00
bin=executor_node
2018-09-20 07:49:02 +02:00
;;
2018-09-20 19:04:34 +02:00
"c")
bin=executor_c
;;
"cpp" | "c++")
bin=executor_cpp
;;
2018-09-21 04:36:21 +02:00
"go")
bin=executor_go
;;
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-21 05:31:40 +02:00
-m 64m \
2018-09-21 01:12:53 +02:00
--network none \
2018-09-20 07:49:02 +02:00
--cpus=".5" \
2018-09-20 04:58:50 +02:00
--rm \
2018-09-21 05:45:40 +02:00
-v $abs:/$file:ro \
-v $dir/executors/python2:/executor_python2:ro \
-v $dir/executors/python3:/executor_python3:ro \
-v $dir/executors/ruby:/executor_ruby:ro \
-v $dir/executors/node:/executor_node:ro \
-v $dir/executors/c:/executor_c:ro \
-v $dir/executors/cpp:/executor_cpp:ro \
-v $dir/executors/go:/executor_go:ro \
2018-09-20 07:49:02 +02:00
piston \
2018-09-21 07:27:19 +02:00
/$bin /$file $file 2>&1
2018-09-21 01:22:47 +02:00
rm -f /tmp/$file