This website requires JavaScript.
Explore
Sign In
public
/
ottertune
Watch
1
Star
0
Fork
You've already forked ottertune
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
c9951a287b
ottertune
/
.travis
/
deploy.sh
8 lines
98 B
Bash
Raw
Normal View
History
Unescape
Escape
Changes: when we deploy our docker images we now also build/deploy the internal driver image; fixed .dockerignore; moved integration test data into the driver; fixed cast in oracle db_time target objective.
2019-12-03 18:26:59 -08:00
#!/bin/bash
travis-ci: trigger a build in the other repository instead of cloning and building it here
2020-01-23 11:06:04 -08:00
set
-ex
Changes: when we deploy our docker images we now also build/deploy the internal driver image; fixed .dockerignore; moved integration test data into the driver; fixed cast in oracle db_time target objective.
2019-12-03 18:26:59 -08:00
travis-ci: trigger a build in the other repository instead of cloning and building it here
2020-01-23 11:06:04 -08:00
for
tag in base web driver
;
do
docker push
"
${
DOCKER_REPO
}
:
${
tag
}
"
Changes: when we deploy our docker images we now also build/deploy the internal driver image; fixed .dockerignore; moved integration test data into the driver; fixed cast in oracle db_time target objective.
2019-12-03 18:26:59 -08:00
done