X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/68fd8100bc36465b29ae76b9f41d9eb7fa052e7a..d65a1dcf24e9c17cea89385c78b1c39c314f0f97:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6f1c997..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: - - clitube + - nimcoon