mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 05:26:28 +02:00
merge
This commit is contained in:
commit
8d89385f19
5 changed files with 17 additions and 0 deletions
4
lxc/executors/dash
Normal file
4
lxc/executors/dash
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd /tmp/$2
|
||||
xargs -a args.args -d '\n' timeout -s KILL 3 dash code.code < stdin.stdin
|
|
@ -15,6 +15,8 @@ echo -n 'testing csharp = '
|
|||
../../cli/execute csharp csharp.cs
|
||||
echo -n 'testing d = '
|
||||
../../cli/execute d test.d
|
||||
echo -n 'testing dash = '
|
||||
../../cli/execute dash dash.sh
|
||||
echo -n 'testing deno = '
|
||||
../../cli/execute deno deno.ts
|
||||
echo -n 'testing elixir = '
|
||||
|
|
1
lxc/tests/dash.sh
Normal file
1
lxc/tests/dash.sh
Normal file
|
@ -0,0 +1 @@
|
|||
echo 'good'
|
|
@ -37,6 +37,10 @@ echo 'd'
|
|||
lxc-attach --clear-env -n piston -- /bin/bash -l -c "dmd --version"
|
||||
echo '---'
|
||||
|
||||
echo 'dash'
|
||||
lxc-attach --clear-env -n piston -- /bin/bash -l -c "dpkg -s dash"
|
||||
echo '---'
|
||||
|
||||
echo 'deno'
|
||||
lxc-attach --clear-env -n piston -- /bin/bash -l -c "deno --version"
|
||||
echo '---'
|
||||
|
|
|
@ -87,6 +87,12 @@
|
|||
"denots"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "dash",
|
||||
"aliases": [
|
||||
"dash"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ruby",
|
||||
"aliases": [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue