diff options
Diffstat (limited to '.builds/test.yml')
| -rw-r--r-- | .builds/test.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.builds/test.yml b/.builds/test.yml new file mode 100644 index 0000000..029c832 --- /dev/null +++ b/.builds/test.yml @@ -0,0 +1,17 @@ +image: ubuntu/lts +sources: + - git@git.sr.ht:~asko/dompa +tasks: + - bootstrap: | + sudo apt update && sudo apt upgrade -y + sudo apt-get install software-properties-common rlwrap curl zip unzip -y + sudo apt update + curl -L -O https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh + chmod +x linux-install.sh + sudo ./linux-install.sh + curl -s "https://get.sdkman.io" | bash + source "/home/build/.sdkman/bin/sdkman-init.sh" + sdk install java + + - test: | + clj -X:test
\ No newline at end of file |
