-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
64 lines (53 loc) · 2.14 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
language: ruby
rvm:
- 2.4.4
sudo: required
services:
- docker
install:
- travis_retry bundle install
before_script:
- cp .env.travis .env
script:
- bundle exec rspec
after_success:
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD";
- REPO=rorcommunity/ror-reconcile;
- AUTO_DEPLOY=false;
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker build -f Dockerfile -t $REPO .;
docker push $REPO;
echo "Pushed to" $REPO;
AUTO_DEPLOY=true;
elif [ "$TRAVIS_BRANCH" == "dev" ]; then
docker build -f Dockerfile -t $REPO:$TRAVIS_BRANCH .;
docker push $REPO:$TRAVIS_BRANCH;
echo "Pushed to" $REPO:$TRAVIS_BRANCH;
AUTO_DEPLOY=true;
fi
- if [ "$AUTO_DEPLOY" == "true" ]; then
wget https://github.com/jwilder/dockerize/releases/download/v0.6.0/dockerize-linux-amd64-v0.6.0.tar.gz;
tar -xzvf dockerize-linux-amd64-v0.6.0.tar.gz;
rm dockerize-linux-amd64-v0.6.0.tar.gz;
export GIT_SHA=$(git rev-parse --short HEAD);
export GIT_TAG=$(git describe --tags $(git rev-list --tags --max-count=1));
git clone "https://${TRAVIS_SECURE_TOKEN}@github.com/ror-community/deployment.git";
if [ "$TRAVIS_BRANCH" == "master" ]; then
./dockerize -template vendor/docker/_ror-reconcile.auto.tfvars.tmpl:deployment/ror/services/reconcile/_ror-reconcile.auto.tfvars;
elif [ "$TRAVIS_BRANCH" == "dev" ]; then
./dockerize -template vendor/docker/_ror-reconcile.auto.tfvars.tmpl:deployment/ror/services/reconcile/_ror-reconcile-dev.auto.tfvars;
fi
cd deployment;
git remote;
git config user.email ${DOCKER_EMAIL};
git config user.name ${DOCKER_USERNAME};
if [ "$TRAVIS_BRANCH" == "master" ]; then
git add ror/services/reconcile/_ror-reconcile.auto.tfvars;
elif [ "$TRAVIS_BRANCH" == "dev" ]; then
git add ror/services/reconcile/_ror-reconcile-dev.auto.tfvars;
fi
git commit -m "Adding ror-reconcile git variables for latest commit on branch $TRAVIS_BRANCH";
git push "https://${TRAVIS_SECURE_TOKEN}@github.com/ror-community/deployment.git" master;
fi
notifications:
email: false