This is an automated email from the ASF dual-hosted git repository.

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2a2b4b5  Simplify Gradle invocation in Travis YAML (FINERACT-1250)
2a2b4b5 is described below

commit 2a2b4b59a1ba5dd8ca8e88f726e5b56d929310f7
Author: Michael Vorburger <[email protected]>
AuthorDate: Mon Nov 2 10:09:30 2020 +0100

    Simplify Gradle invocation in Travis YAML (FINERACT-1250)
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 7eaf030..259efe6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -72,6 +72,6 @@ script:
 # using "&&" instead of several "-" means that integrationTest does not run if 
test fails,
 # and Docker test does not run if integration test fails, which makes PR 
failure easier to understand.
 # @see 
https://docs.travis-ci.com/user/job-lifecycle/#customizing-the-build-phase
-  - ./gradlew --console=plain -PautomatedBuild=true licenseMain licenseTest 
check -x test  &&  ./gradlew --console=plain -PautomatedBuild=true build test 
--fail-fast  &&  sudo service mysql stop  &&  docker-compose build  &&  
docker-compose up -d  &&  sleep 60s  && curl -f -k --retry 5 
--retry-connrefused --connect-timeout 30 --retry-delay 30 
https://localhost:8443/fineract-provider/actuator/health  &&  (( $(curl -f -k 
--retry 5 --retry-connrefused --connect-timeout 30 --retry-delay 30 h [...]
+  - ./gradlew --no-daemon --console=plain -PautomatedBuild=true licenseMain 
licenseTest check build test --fail-fast  &&  sudo service mysql stop  &&  
docker-compose build  &&  docker-compose up -d  &&  sleep 60s  && curl -f -k 
--retry 5 --retry-connrefused --connect-timeout 30 --retry-delay 30 
https://localhost:8443/fineract-provider/actuator/health  &&  (( $(curl -f -k 
--retry 5 --retry-connrefused --connect-timeout 30 --retry-delay 30 
https://localhost:8443/fineract-provider/actuator/ [...]
 # We stop the mysql system service when running the Docker test to avoid port 
3306 conflicts (unless we run the mysql in docker-compose on another port; req. 
FINERACT-773)
 # The fancy /actuator/info test makes sure that has more than 100 characters 
of JSON to test that the git.properties worked (see FINERACT-983)

Reply via email to