From 0ce6e992508dadeae1c98bf19165deef4a3b7c70 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Sat, 5 Oct 2019 08:33:48 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b896d93 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: nimlang/nim:latest + +stages: + - build + +compile: + stage: build + script: + - nim c -d:ssl -d:release cli_tube.nim + artifacts: + paths: + - cli_tube -- 2.43.0