From d1f4470c56344367c5dfd6bc625d49dbf11ab8e5 Mon Sep 17 00:00:00 2001 From: Christoph Reiter <reiter.christoph@gmail.com> Date: Tue, 30 Jul 2019 16:31:16 +0200 Subject: [PATCH] Add gitlab-ci support --- packages/notification/.gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 packages/notification/.gitlab-ci.yml diff --git a/packages/notification/.gitlab-ci.yml b/packages/notification/.gitlab-ci.yml new file mode 100644 index 00000000..39843120 --- /dev/null +++ b/packages/notification/.gitlab-ci.yml @@ -0,0 +1,20 @@ +image: debian:buster + +before_script: + - apt update + - apt install -y git + - "sed -i 's|git@gitlab.tugraz.at:VPU|../..|g' .gitmodules" + - git submodule sync + - git submodule update --init + +stages: + - test + +test: + stage: test + script: + - apt update + - apt install -y npm + - npm run setup + - npm install + - npm run build -- GitLab