Lose more sanity

This commit is contained in:
Radon Rosborough 2021-12-11 13:55:20 -08:00
parent 61890838cd
commit 0b7c77ebae
8 changed files with 17 additions and 5 deletions

View File

@ -15,7 +15,7 @@ curl -sSL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
ubuntu_ver="$(lsb_release -rs)"
ubuntu_name="$(lsb_release -cs)"
node_repo="$(curl -sS https://deb.nodesource.com/setup_current.x | grep NODEREPO= | grep -Eo 'node_[0-9]+\.x' | head -n1)"
node_repo="$(curl -sS https://deb.nodesource.com/setup_16.x | grep NODEREPO= | grep -Eo 'node_[0-9]+\.x' | head -n1)"
tee -a /etc/apt/sources.list.d/custom.list >/dev/null <<EOF
deb https://deb.nodesource.com/${node_repo} ${ubuntu_name} main

View File

@ -36,3 +36,5 @@ template: |
run: |
JAVA_OPTS="-Duser.home=$PWD" kotlinc -script main.kts
kotlinc
timeoutFactor: 2

View File

@ -69,4 +69,4 @@ template: |
run: |
if spago build -n; then spago run -n; (echo 'import Prelude'; echo 'import Main') > .purs-repl; spago repl; else echo 'import Prelude' > .purs-repl; spago repl -d; fi
timeoutFactor: 2
timeoutFactor: 8

View File

@ -90,3 +90,6 @@ lsp:
InterpreterPath: /usr/bin/python3
code: "import func"
item: "functools"
skip:
- lsp

View File

@ -60,3 +60,5 @@ template: |
run: |
dotnet run --project main
timeoutFactor: 4

View File

@ -23,7 +23,7 @@ setup: |
repl: |
"$(which red)"
input: |
DELAY: 1
DELAY: 5
123 * 234
main: "main.red"

View File

@ -7,6 +7,9 @@ install:
repl: |
scala
input: |
DELAY: 5
123 * 234
main: "main.scala"
template: |
@ -18,3 +21,5 @@ run: |
scope:
code: |
val x = 123 * 234
timeoutFactor: 2

View File

@ -63,11 +63,11 @@ scope:
code: |
x = 123 * 234
input: |
DELAY: 5
DELAY: 15
load main.u
DELAY: 5
add x
DELAY: 5
display x
timeoutFactor: 2
timeoutFactor: 4