From e717664811936f8536a1b43c212eda75ee9fb30b Mon Sep 17 00:00:00 2001
From: Wolfgang Knopki <wolfgang.knopki@hft-stuttgart.de>
Date: Thu, 12 Nov 2020 13:47:29 +0100
Subject: [PATCH] added ci/cd pipeline

---
 .gitlab-ci.yml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..b8f17cf
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,16 @@
+production:
+  script:
+  - rsync -a ./mymodule/ /data/simplesamlphp/modules/mymodule/
+  only: 
+  - deploy_master
+  tags: 
+  - SSO
+  
+testing:
+  script:
+  - rsync -a ./ /data/simplesamlphptest/modules/sqlauthbcrypt/
+  only:
+  - deploy_testing
+  tags:
+  - SSO
+
-- 
GitLab