remove travis_retry

This commit is contained in:
Claudia Agache
2020-07-04 20:30:01 +03:00
parent b409ec410f
commit f199d9740b
3 changed files with 4 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ jobs:
- name: "Community Rest API Tests" - name: "Community Rest API Tests"
stage: Tests stage: Tests
install: install:
- travis_retry travis_wait 90 bash scripts/startAlfresco.sh apply-rm-community - travis_wait 90 bash scripts/startAlfresco.sh apply-rm-community
script: script:
- echo "Community Rest API Tests" - echo "Community Rest API Tests"
- name: "Enterprise Rest API Tests" - name: "Enterprise Rest API Tests"

View File

@@ -112,7 +112,7 @@
<name>postgres:9.1</name> <name>postgres:9.1</name>
<run> <run>
<ports> <ports>
<port>5431:5432</port> <port>5432:5432</port>
</ports> </ports>
<env> <env>
<POSTGRES_PASSWORD>alfresco</POSTGRES_PASSWORD> <POSTGRES_PASSWORD>alfresco</POSTGRES_PASSWORD>

View File

@@ -1,4 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# fail script immediately on any errors in external commands and print the lines
set -ev
export PROFILE=$1 export PROFILE=$1