Skip to content

Commit

Permalink
Reordered build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cer committed Nov 20, 2017
1 parent f19e438 commit 756daf7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -14,8 +14,8 @@ jobs:
key: eventuate-tram-core-{{ checksum "build.gradle" }}
- run: TERM=dumb ./build-and-test-all.sh
- run: TERM=dumb ./build-and-test-all-cdc.sh
- run: TERM=dumb ./build-and-test-all-cdc-postgres.sh
- run: TERM=dumb ./build-and-test-all-postgres.sh
- run: TERM=dumb ./build-and-test-all-cdc-postgres.sh
- run:
name: Save test results
command: |
Expand Down
3 changes: 3 additions & 0 deletions deploy-artifacts.sh
Expand Up @@ -21,6 +21,9 @@ function tagAndPush() {
REMOTE=$2
$PREFIX docker tag ${DOCKER_COMPOSE_PREFIX?}$LOCAL $DOCKER_REPO/$REMOTE:$VERSION
$PREFIX docker tag ${DOCKER_COMPOSE_PREFIX?}$LOCAL $DOCKER_REPO/$REMOTE:latest
echo Pushing $DOCKER_REPO/$REMOTE:$VERSION
$PREFIX docker push $DOCKER_REPO/$REMOTE:$VERSION
$PREFIX docker push $DOCKER_REPO/$REMOTE:latest
}

$PREFIX docker login -u ${DOCKER_USER_ID?} -p ${DOCKER_PASSWORD?}
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-postgres.yml
@@ -1,12 +1,12 @@
zookeeper:
image: eventuateio/eventuateio-local-zookeeper:0.10.0
image: eventuateio/eventuateio-local-zookeeper:0.15.0
ports:
- 2181:2181
- 2888:2888
- 3888:3888

kafka:
image: eventuateio/eventuateio-local-kafka:0.10.0
image: eventuateio/eventuateio-local-kafka:0.15.0
ports:
- 9092:9092
links:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
@@ -1,13 +1,13 @@
zookeeper:
image: eventuateio/eventuateio-local-zookeeper:0.14.0
image: eventuateio/eventuateio-local-zookeeper:0.15.0
ports:
- 2181:2181
- 2888:2888
- 3888:3888


kafka:
image: eventuateio/eventuateio-local-kafka:0.14.0
image: eventuateio/eventuateio-local-kafka:0.15.0
ports:
- 9092:9092
links:
Expand Down
2 changes: 1 addition & 1 deletion mysql/Dockerfile
@@ -1,2 +1,2 @@
FROM eventuateio/eventuateio-local-mysql:0.14.0
FROM eventuateio/eventuateio-local-mysql:0.15.0
COPY schema.sql /docker-entrypoint-initdb.d

0 comments on commit 756daf7

Please sign in to comment.