X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/0ce6e992508dadeae1c98bf19165deef4a3b7c70..3b9d57fc1d53a4dc32fe4a2ee636f2bc488e9a61:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b896d93..a87da85 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,18 @@ image: nimlang/nim:latest stages: + - test - build -compile: - stage: build +run-unit-tests: + stage: test script: - - nim c -d:ssl -d:release cli_tube.nim + - nim c -d:ssl -r tests + +publish-artifacts: + stage: publish + script: + - nim c -d:ssl -d:release nimcoon.nim && strip nimcoon artifacts: paths: - - cli_tube + - nimcoon