-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (34 loc) · 1.22 KB
/
.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
34
sudo: required
services:
- docker
language: node_js
cache:
npm: true
directories:
# We cache the SDK so we don't have to download it again on subsequent builds.
- $HOME/google-cloud-sdk
env:
global:
- GIT_SHA=$(git rev-parse HEAD)
- CLOUDSDK_CORE_DISABLE_PROMPTS=1
before_install:
- openssl aes-256-cbc -K $encrypted_4ef9e63eb81d_key -iv $encrypted_4ef9e63eb81d_iv -in service-account.json.enc -out service-account.json -d
- if [ ! -d $HOME/google-cloud-sdk/bin ]; then rm -rf $HOME/google-cloud-sdk; curl https://sdk.cloud.google.com | bash > /dev/null; fi
- source $HOME/google-cloud-sdk/path.bash.inc
- gcloud components update kubectl
- gcloud auth activate-service-account --key-file service-account.json
- gcloud config set project sustain-indy-foods
- gcloud config set compute/zone us-central1-c
- gcloud container clusters get-credentials sustain-indy-foods-cluster
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_ID" --password-stdin
jobs:
include:
- stage: "Build and test"
name: "Build and test app services"
script: true
# script: docker run -e CI=true riliadmin/testing npm run test
deploy:
provider: script
script: _bin/travis/deploy.sh
on:
branch: master