mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
* remove unnecessary build environment variables * add a LOG_WARN environment variable - for shorter build commands * split the `release.sh` script into `community_release.sh` and `enterprise_release.sh` * remove usage of the `-Dcommunity` build variable where not needed - use/exclude the `-Penterprise` profile explicitly where needed * modify the Travis `install` phase on some jobs so it runs a basic Java compilation of the project (without docker) * remove the *internal* profile and renamed the *master* profile into *publish-docker-latest* * modifiy the profiles for the docker builds so that the same profile handles both community (DockerHub&Quay) and enteprise (only Quay) docker image deploys * run all the _Unit&Integration Tests_ across community&enteprise in one single job, in parallel with the REST API & UI test suites (APPS-889) * reorganize the job order so that the *Tests* stage is the first one executed (APPS-894) * only run the *Maven&Docker deploy* tasks on the *master* & *release* branches after the *Tests* stage (APPS-894)
14 lines
732 B
YAML
14 lines
732 B
YAML
env:
|
|
global:
|
|
- MVN_SKIP='-Dmaven.javadoc.skip=true -Dmaven.source.skip=true -DskipTests'
|
|
- AWS_ACCESS_KEY_ID=${CREATE_BUCKET_AWS_ACCESS_KEY}
|
|
- AWS_SECRET_ACCESS_KEY=${CREATE_BUCKET_AWS_SECRET_KEY}
|
|
- S3_BUCKET_REGION="us-east-1"
|
|
- S3_BUCKET_NAME="travis-ags-${TRAVIS_JOB_NUMBER}"
|
|
- S3_BUCKET2_NAME="travis-ags-worm-b2"
|
|
- ALFRESCO_URL="http://localhost:8080/alfresco"
|
|
- SHARE_URL="http://localhost:8181/share"
|
|
- DISPLAY=:99.0
|
|
- WEBDRIVER_ARGUMENTS='-Dwebdriver.local.grid=true -Dwebdriver.browser=RemoteFireFox -Dwebdriver.localGrid=false -Dorg.alfresco.rm.timeout_seconds.MEDIUM=30'
|
|
- LOG_WARN="-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
|