try to start alfresco using script

This commit is contained in:
Claudia Agache
2020-07-03 11:27:36 +03:00
parent 3b9397ae1e
commit e18ca5af16
2 changed files with 3 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ jobs:
stage: Tests
install:
- mvn clean install -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -DskipTests -B
- travis_wait 60 bash scripts/startAlfresco.sh apply-rm-community
- travis_wait 60 bash scripts/startAlfresco.sh apply-rm-community ${env.INSTALLER_URL}
script:
- echo "Community Rest API Tests"
- name: "Enterprise Rest API Tests"

View File

@@ -1,6 +1,7 @@
#!/usr/bin/env bash
export PROFILE=$1
export INSTALLER=$2
cd rm-automation
mvn clean install -Pinstall-alfresco,${PROFILE} -Dinstaller.url=${env.INSTALLER_URL}
mvn clean install -Pinstall-alfresco,${PROFILE} -Dinstaller.url=${INSTALLER}