From e4b1a53363b76a5b66ba7c9064dd23a4d252d30d Mon Sep 17 00:00:00 2001 From: cgeek <cem.moreau@gmail.com> Date: Sun, 3 Dec 2017 18:18:43 +0100 Subject: [PATCH] Test Gitlab CI --- .gitlab-ci.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..b3b103a3d --- /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 -- GitLab