From 7c47d6bef177b80b8921ab3497b7524c6a31f038 Mon Sep 17 00:00:00 2001 From: Frisk Date: Wed, 13 Feb 2019 00:54:33 +0100 Subject: [PATCH] Added pipeline job --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a71689c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +test: + type: test + script: + - apt-get update -qy + - apt-get install -y python-dev python-pip + - pip install -r requirements.txt + - sed -i -e 's/https:\/\/discordapp.com\/api\/webhooks\/111111111111111111\/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/$DISCORD/g' settings.json.example + - mv settings.json.example settings.json + - python rcgcdw.py + only: + - testing \ No newline at end of file