aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..df19709
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,17 @@
+image: gcc
+
+build:
+ stage: build
+ before_script:
+ - apt update && apt -y install make autoconf cmake qt5
+ script:
+ - cmake
+ - make
+ artifacts:
+ paths:
+ - mybinary
+
+# run tests using the binary built before
+test:
+ stage: test
+ script: