forked from gailkaiser/coms4156_jumpstart
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
35 lines (28 loc) · 918 Bytes
/
.travis.yml
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
29
30
31
32
33
# Reference - https://github.com/GoogleCloudPlatform/continuous-deployment-demo/blob/appengine_travis_deploy/.travis.yml
dist: trusty
sudo: required
group: deprecated-2017Q2
language: python
python:
- '2.7'
before_install:
- openssl aes-256-cbc -K $encrypted_dfafe6656572_key -iv $encrypted_dfafe6656572_iv -in credentials.tar.gz.enc -out credentials.tar.gz -d
# If the SDK is not already cached, download it and unpack it
- tar -xzf credentials.tar.gz
- mkdir -p lib
install:
# Install the Python dependencies
- pip install -r requirements.txt -t lib/
script:
- echo "No Script to run"
# - sonar-scanner
deploy:
provider: gae
# Skip cleanup so api_key.py and vendored dependencies are still there
skip_cleanup: true
keyfile: cred.json
# project: coms4156-168718
project: imhere-ase-summer-2017 #### This is your project name
default: true
on:
all_branches: true