diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..10afa7d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +image: gcc:10 + +stages: + - build + - test + +build: + stage: build + script: + - mkdir build + - cd build + - cmake .. + - make + artifacts: + name: test + paths: + - build/src + - build/lib + - build/test + - build/test_work_dir + +test: + stage: test + script: + - ./test/horcrux_test +