From e828b0958ca97fedbb1644c66b27c2eceed0ded5 Mon Sep 17 00:00:00 2001
From: Paul McCarthy <paulmc@fmrib.ox.ac.uk>
Date: Thu, 8 Jun 2017 19:30:51 +0100
Subject: [PATCH] Move variables out of ci file - they can be set on the repo
 (so I can change them without having to commit)

---
 .gitlab-ci.yml | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 514865d6b..b95d53c4d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -34,7 +34,7 @@ stages:
  - deploy
 
 
-###############################################################################
+#################################################################################
 # A number of variables must be set for the jobs to work. The following
 # variables are implicitly defined in any gitlab CI job:
 #
@@ -55,17 +55,23 @@ stages:
 #
 #   - SSH_SERVER_HOSTKEYS            - List of trusted SSH hosts
 #
+#   - DOC_HOST:                      - Username@host to upload documentation to
+#                                      (e.g. "paulmc@jalapeno.fmrib.ox.ac.uk")
+#
+#   - FSL_HOST:                      - Username@host to download FSL data from
+#                                      (e.g. "paulmc@jalapeno.fmrib.ox.ac.uk")
+#
+#   - TWINE_USERNAME:                - Username to use when uploading to pypi
+#
 #   - TWINE_PASSWORD:                - Password to use when uploading to pypi
+#
+#   - TWINE_REPOSITORY_URL:          - Pypi repository to upload to
 ###############################################################################
 
 
 variables:
   UPSTREAM_PROJECT:     "fsl/fslpy"
   UPSTREAM_URL:         "git@git.fmrib.ox.ac.uk"
-  DOC_HOST:             "paulmc@jalapeno.fmrib.ox.ac.uk"
-  FSL_HOST:             "paulmc@jalapeno.fmrib.ox.ac.uk"
-  TWINE_USERNAME:       "pauldmccarthy"
-  TWINE_REPOSITORY_URL: "https://testpypi.python.org/pypi"
 
 
 ####################################
-- 
GitLab