forked from opensciencegrid/user-school-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.env
28 lines (23 loc) · 1.12 KB
/
.travis.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# A template for variable required for the deploy script. Replace the
# values below with appropriate values for your repository
# Encrypted SSH-key; the file output from `travis encrypt-file`
ENCRYPTED_FILE="deploy-key.enc"
# Travis-CI variables used for decrypting ENCRYPTED_FILE from the
# output of `travis encrypt-file`. Alternatively, you can find the
# names of these variables in your repository's Travis-CI settings
# (e.g. https://travis-ci.org/opensciencegrid/docs/settings)
KEY="$encrypted_b3eed5414353_key"
IV="$encrypted_b3eed5414353_iv"
# The same variables except for your ITB repository
# NOTE: the ITB_KEY and ITB_IV values should be found in your
# documentation repository's Travis-CI settings, NOT your ITB
# repository's Travis-CI settings
ITB_ENCRYPTED_FILE="deploy-itb.enc"
ITB_KEY="$encrypted_0b64cd5b8130_key"
ITB_IV="$encrypted_0b64cd5b8130_iv"
# Regular expression matching branches that should trigger an ITB
# deployment. The example below matches any branches starting with
# "itb."
ITB_BRANCH_REGEXP="^materials$"
# Github owner/repository used for ITB deployment
ITB_REPO="opensciencegrid/user-school-2018-itb"