From 780f688c774db485b70c69debbe2e65e33b71944 Mon Sep 17 00:00:00 2001 From: Timo Goettel Date: Mon, 9 Apr 2018 16:40:09 +0200 Subject: [PATCH] 262 273: Add .gitlab-ci base structure with dummy test job --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..a1045f01d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: node:8.11.1-stretch + +before_script: + - apt-get update --q && apt-get install -y -qq python3 python3-venv + - git config user.email "gitlab-ci@example.com" + - git fetch origin master + - git merge origin/master --no-ff + +stages: + - test + +test: + stage: test + script: echo "Running tests" -- GitLab