diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..b3b103a3d8e3aa5fb66f6cf7d5a095516316b9f1 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,34 @@ +stages: + - build-all + - release + +all-platforms: + stage: build-all + tags: + - cgeek-test + script: + - >- + echo "pouetpouet" > test_windows.txt + - >- + echo "bidule" > test_linux.txt + artifacts: + name: all + when: always + paths: + - test_windows.txt + - test_linux.txt + only: + - tags + +linux: + stage: release + tags: + - cgeek-test + script: + - ls -l test_linux.txt + artifacts: + name: linux + paths: + - test_linux.txt + only: + - tags