X-Git-Url: http://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/3c20e75c565cd0d0eb73ca8060c22bf557aeab89..HEAD:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7597d89..f7727da 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,18 @@ image: nimlang/nim:latest stages: - - build + - test + - publish -compile: - stage: build +run-unit-tests: + stage: test script: - - nim c -d:ssl -d:release nimcoon.nim + - nimble test + +publish-artifacts: + stage: publish + script: + - nimble build && strip nimcoon artifacts: paths: - nimcoon