X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/6cd451ca8feb3c050587dc80b2f11699c0fbc532..2a97409a93fad6c907239211eb5730e73f9b1183:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e9d949b..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 clitube.nim + - nimble test + +publish-artifacts: + stage: publish + script: + - nimble build && strip nimcoon artifacts: paths: - - clitube + - nimcoon