diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..a2a65d5710493fac943f658b41a1be3e9b16845c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +stages: + - build + - test + +build: + stage: build + script: + - echo "Building" + - mkdir build + - touch build/info.txt + +test: + stage: test + script: + - echo "Testing" + - test -f "build/info.txt" +