From 3c0bcb0779e65e2a8652728df0635a493a8bfaaf Mon Sep 17 00:00:00 2001
From: Julien Leduc <julien.leduc@cern.ch>
Date: Sat, 1 Jul 2017 00:22:34 +0200
Subject: [PATCH] Testing scheduled tests capability

---
 .gitlab-ci.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4eca985326..3b6f4465b6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -138,3 +138,21 @@ archiveretrieve:
   tags:
     - kubernetes
     - mhvtl
+
+
+nightlytests:
+  stage: test
+  only:
+    - schedules
+  script:
+    echo "Running  nightly tests"
+    - export NAMESPACE="archiveretrieve-${CTA_BUILD_ID}-$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 4 | head -n 1)"
+    - cd continuousintegration/orchestration/; ./run_systemtest.sh -n ${NAMESPACE} -p ${CI_PIPELINE_ID} -s tests/archive_retrieve.sh -O -D
+  artifacts:
+    when: always
+    expire_in: 30 days
+    paths:
+    - pod_logs
+  tags:
+    - kubernetes
+    - mhvtl
-- 
GitLab