Skip to content

Commit

Permalink
release 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
osalvador committed Aug 6, 2020
1 parent ddc60f9 commit 5fbde34
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
30 changes: 16 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,26 @@ install:
- ls -ltr


#before_script:
# # Run databases services for integration tests
# - docker-compose -f tests/docker-compose.yml up -d
#
#script:
# - ls -lah
# # unit tests
# - mvn test -B
# # integration tests
# - ./tests/pg/test-runner.sh
#
#after_script:
# - docker-compose down -v
before_script:
# Run databases services for integration tests
- docker-compose -f tests/docker-compose.yml up -d

script:
- ls -lah
# unit tests
- mvn test -B
# integration tests
- ./tests/pg/test-runner.sh

after_script:
- docker-compose down -v

before_deploy:
- docker build --build-arg REPLICADB_RELEASE_VERSION=${REPLICADB_RELEASE_VERSION} -t osalvador/replicadb:${REPLICADB_RELEASE_VERSION} .
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- docker build --build-arg REPLICADB_RELEASE_VERSION=${REPLICADB_RELEASE_VERSION} -t osalvador/replicadb:${REPLICADB_RELEASE_VERSION} .
- docker push osalvador/replicadb:${REPLICADB_RELEASE_VERSION}
- docker build --build-arg REPLICADB_RELEASE_VERSION=${REPLICADB_RELEASE_VERSION} -t osalvador/replicadb .
- docker push osalvador/replicadb

deploy:
provider: releases
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ ReplicaDB is written in Java and requires a Java Runtime Environment (JRE) Stand
Just download [latest](https://github.com/osalvador/ReplicaDB/releases) release and unzip it.

```bash
$ curl -o ReplicaDB-0.8.6.tar.gz -L "https://github.com/osalvador/ReplicaDB/releases/download/v0.8.6/ReplicaDB-0.8.6.tar.gz"
$ tar -xvzf ReplicaDB-0.8.6.tar.gz
$ curl -o ReplicaDB-0.8.7.tar.gz -L "https://github.com/osalvador/ReplicaDB/releases/download/v0.8.7/ReplicaDB-0.8.7.tar.gz"
$ tar -xvzf ReplicaDB-0.8.7.tar.gz
$ ./bin/replicadb --help
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.replicadb</groupId>
<artifactId>ReplicaDB</artifactId>
<version>0.8.6</version>
<version>0.8.7</version>

<name>ReplicaDB</name>
<url>https://github.com/osalvador/ReplicaDB</url>
Expand Down

0 comments on commit 5fbde34

Please sign in to comment.