]> njoseph.me Git - nimcoon.git/blob - .gitlab-ci.yml
Fix .gitlab-ci.yml
[nimcoon.git] / .gitlab-ci.yml
1 image: nimlang/nim:latest
2
3 stages:
4 - test
5 - publish
6
7 run-unit-tests:
8 stage: test
9 script:
10 - nim c -d:ssl -r tests
11
12 publish-artifacts:
13 stage: publish
14 script:
15 - nim c -d:ssl -d:release nimcoon.nim && strip nimcoon
16 artifacts:
17 paths:
18 - nimcoon