mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
21 lines
575 B
Bash
Executable File
21 lines
575 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "=========================== Starting Worm Tests Script ==========================="
|
|
PS4="\[\e[35m\]+ \[\e[m\]"
|
|
set -vex
|
|
pushd "$(dirname "${BASH_SOURCE[0]}")/../"
|
|
|
|
export S3_BUCKET2_NAME="travis-ags-worm-${TRAVIS_JOB_NUMBER}-b2"
|
|
|
|
cd rm-automation/rm-automation-enterprise-rest-api
|
|
|
|
# Run the WORM tests
|
|
mvn -B -U clean test \
|
|
-DsuiteXmlFile=wormTestSuite.xml \
|
|
-Dskip.automationtests=false \
|
|
-Dconnector.s3.bucketName=${S3_BUCKET2_NAME}
|
|
|
|
popd
|
|
set +vex
|
|
echo "=========================== Finishing Worm Tests Script =========================="
|