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