add nim
This commit is contained in:
parent
d86eb04dec
commit
1c1fa316e5
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd /tmp/$2
|
||||||
|
timeout -s KILL 10 nim --hints:off c code.code
|
||||||
|
timeout -s KILL 3 xargs -a args.args -d '\n' ./code
|
|
@ -41,6 +41,8 @@ echo -n 'testing nasm 32 bit = '
|
||||||
../../cli/execute nasm nasm.nasm
|
../../cli/execute nasm nasm.nasm
|
||||||
echo -n 'testing nasm 64 bit = '
|
echo -n 'testing nasm 64 bit = '
|
||||||
../../cli/execute nasm64 nasm64.nasm
|
../../cli/execute nasm64 nasm64.nasm
|
||||||
|
echo -n 'testing nim = '
|
||||||
|
../../cli/execute nim nim.nim
|
||||||
echo -n 'testing node = '
|
echo -n 'testing node = '
|
||||||
../../cli/execute node node.js
|
../../cli/execute node node.js
|
||||||
echo -n 'testing paradoc = '
|
echo -n 'testing paradoc = '
|
||||||
|
|
|
@ -89,6 +89,10 @@ echo 'nasm64'
|
||||||
lxc-attach --clear-env -n piston -- /bin/bash -l -c "nasm -version"
|
lxc-attach --clear-env -n piston -- /bin/bash -l -c "nasm -version"
|
||||||
echo '---'
|
echo '---'
|
||||||
|
|
||||||
|
echo 'nim'
|
||||||
|
lxc-attach --clear-env -n piston -- /bin/bash -l -c "nim -v"
|
||||||
|
echo '---'
|
||||||
|
|
||||||
echo 'node'
|
echo 'node'
|
||||||
lxc-attach --clear-env -n piston -- /bin/bash -l -c "node --version"
|
lxc-attach --clear-env -n piston -- /bin/bash -l -c "node --version"
|
||||||
echo '---'
|
echo '---'
|
||||||
|
|
|
@ -274,6 +274,7 @@ Content-Type: application/json
|
||||||
`lua`,
|
`lua`,
|
||||||
`nasm`,
|
`nasm`,
|
||||||
`nasm64`,
|
`nasm64`,
|
||||||
|
`nim`,
|
||||||
`node`,
|
`node`,
|
||||||
`paradoc`,
|
`paradoc`,
|
||||||
`perl`,
|
`perl`,
|
||||||
|
|
|
@ -136,6 +136,12 @@
|
||||||
"java"
|
"java"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "nim",
|
||||||
|
"aliases": [
|
||||||
|
"nim"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "node",
|
"name": "node",
|
||||||
"aliases": [
|
"aliases": [
|
||||||
|
|
|
@ -252,6 +252,18 @@ rm zig-linux-x86_64-0.7.1.tar.xz
|
||||||
echo 'export PATH=$PATH:/opt/zig/zig' >> /opt/.profile
|
echo 'export PATH=$PATH:/opt/zig/zig' >> /opt/.profile
|
||||||
source /opt/.profile
|
source /opt/.profile
|
||||||
|
|
||||||
|
# install nim
|
||||||
|
# final binary: /opt/nim/bin/nim
|
||||||
|
# get version: /opt/nim/bin/nim -v
|
||||||
|
cd /opt && mkdir nim && cd nim
|
||||||
|
wget https://nim-lang.org/download/nim-1.4.0-linux_x64.tar.xz
|
||||||
|
unxz nim-1.4.0-linux_x64.tar.xz
|
||||||
|
tar -xf nim-1.4.0-linux_x64.tar
|
||||||
|
cd nim-1.4.0
|
||||||
|
./install.sh /opt
|
||||||
|
echo 'export PATH=$PATH:/opt/nim/bin' >> /opt/.profile
|
||||||
|
source /opt/.profile
|
||||||
|
|
||||||
# create runnable users and apply limits
|
# create runnable users and apply limits
|
||||||
for i in {1..150}; do
|
for i in {1..150}; do
|
||||||
useradd -M runner$i
|
useradd -M runner$i
|
||||||
|
|
Loading…
Reference in New Issue