From 97975fc1080e17e0057ef566fc263196b8b2e77c Mon Sep 17 00:00:00 2001 From: Marco Zeisler Date: Tue, 11 May 2021 17:03:39 +0200 Subject: [PATCH] init (cherry picked from commit 601384d363ec478a73cd6cdcd7ce63abd9dcdfc7) --- .gitlab-ci.yml | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a3b0552 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,65 @@ +stages: + - lint + - build + - test + - compose-build + - compose-push + +.lint: + stage: lint +.build: + stage: build +.test: + stage: test +.compose-build: + stage: compose-build +.compose-push: + stage: compose-push + +lint_fe: + script: + - echo '' + extends: + - .lint + +lint_be: + script: + - echo '' + extends: + - .lint + +build_fe: + script: + - echo '' + extends: + - .build + +build_be: + script: + - echo '' + extends: + - .build + +test_fe: + script: + - echo '' + extends: + - .test + +test_be: + script: + - echo '' + extends: + - .test + +compose-build: + script: + - echo '' + extends: + - .compose-build + +compose-push: + script: + - echo '' + extends: + - compose-push