Merge pull request #1334 from Alfresco/feature/APPS-692_UpdateACSVersion

Apps 692 update acs version
This commit is contained in:
Claudia Agache
2021-02-23 10:40:59 +02:00
committed by GitHub
4 changed files with 40 additions and 15 deletions

View File

@@ -533,7 +533,7 @@
<alfresco.groupId>org.alfresco</alfresco.groupId>
<alfresco.share.artifactId>share</alfresco.share.artifactId>
<alfresco-spring-webscripts.version>8.15</alfresco-spring-webscripts.version>
<api.explorer.version>7.0.0-A3</api.explorer.version>
<api.explorer.version>7.0.0-A4</api.explorer.version>
<!-- Set this here and override it in the community and enterprise modules. -->
<alfresco.min.version>0.0</alfresco.min.version>
@@ -597,7 +597,7 @@
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
<apache-compress.version>1.19</apache-compress.version>
<!-- 7.0.0 dependencies -->
<alfresco-community-repo.version>8.382</alfresco-community-repo.version>
<alfresco-community-repo.version>8.400</alfresco-community-repo.version>
</properties>
<dependencyManagement>

View File

@@ -75,7 +75,7 @@
<properties>
<spring.version>5.3.3</spring.version>
<alfresco.min.version>7.0.0</alfresco.min.version>
<share.version>7.0.0-A15</share.version>
<share.version>7.0.0-A17</share.version>
<!-- The properties app.amp.* need to be set for share to work. -->
<app.filtering.enabled>true</app.filtering.enabled>
</properties>

View File

@@ -1,6 +1,9 @@
#!/usr/bin/env bash
set -x
# Display running containers
docker ps
alfrescoContainerId=$(docker ps -a | grep '_alfresco_' | awk '{print $1}')
shareContainerId=$(docker ps -a | grep '_share_' | awk '{print $1}')
solrContainerId=$(docker ps -a | grep '_search_' | awk '{print $1}')
@@ -9,4 +12,6 @@ docker logs $alfrescoContainerId > alfresco.log
if [ -n "$shareContainerId" ]; then
docker logs $shareContainerId > share.log
fi
docker logs $solrContainerId > solr.log
if [ -n "$solrContainerId" ]; then
docker logs $solrContainerId > solr.log
fi

View File

@@ -2,6 +2,13 @@ jobs:
include:
- name: "Community Rest API Tests"
stage: Tests
addons:
artifacts:
paths:
- ./rm-automation/rm-automation-community-rest-api/target/reports/rm-automation-community-rest-api.log
- alfresco.log
- solr.log
target_paths: $TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER
install:
- |
if [[ ${TRAVIS_BRANCH} == *community* ]]; then
@@ -19,10 +26,17 @@ jobs:
fi
- bash scripts/waitForAlfrescoToStart.sh
script: travis_wait 40 mvn -B test -pl :alfresco-governance-services-automation-community-rest-api -Dskip.automationtests=false
after_failure: docker ps -a | grep '_alfresco_1' | awk '{print $1}' | xargs docker logs | tail -5000
after_script: bash scripts/getLogs.sh
- name: "Enterprise Rest API Tests"
stage: Tests
addons:
artifacts:
paths:
- ./rm-automation/rm-automation-enterprise-rest-api/target/reports/rm-automation-enterprise-rest-api.log
- alfresco.log
- solr.log
target_paths: $TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER
install:
- travis_retry travis_wait 90 mvn -B -q install $MVN_SKIP -PbuildDockerImage -pl :alfresco-governance-services-enterprise-repo -am
- travis_retry travis_wait 30 mvn -B -U -q clean install ${MVN_SKIP} -pl :alfresco-governance-services-automation-enterprise-rest-api -am
@@ -33,15 +47,17 @@ jobs:
- sudo free -m -t
script:
- travis_wait 90 mvn -B test -pl :alfresco-governance-services-automation-enterprise-rest-api -Dskip.automationtests=false
after_failure: docker ps -a | grep '_alfresco_1' | awk '{print $1}' | xargs docker logs | tail -5000
after_script: bash scripts/getLogs.sh
- name: "Enterprise Rest API WORM Tests"
stage: Tests
addons:
artifacts:
paths:
- ./rm-automation/rm-automation-enterprise-rest-api/target/reports/rm-automation-enterprise-rest-api.log
- ./rm-automation/rm-automation-enterprise-rest-api/target/surefire-reports
- name: "Enterprise Rest API WORM Tests"
stage: Tests
- alfresco.log
- solr.log
target_paths: $TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER
install:
- travis_retry travis_wait 90 mvn -B -U -q clean install ${MVN_SKIP} -PbuildDockerImage -pl :alfresco-governance-services-enterprise-repo,:alfresco-governance-services-enterprise-share -am
- travis_retry travis_wait 30 mvn -B -U -q clean install ${MVN_SKIP} -pl :alfresco-governance-services-automation-enterprise-rest-api -am
@@ -50,8 +66,10 @@ jobs:
- bash scripts/start-compose.sh "${ENTERPRISE_SHARE_PATH}/docker-compose-worm-support-rest.yml"
- bash scripts/waitForAlfrescoToStart.sh
script: mvn -B test -pl :alfresco-governance-services-automation-enterprise-rest-api -DsuiteXmlFile=wormTestSuite.xml -Dskip.automationtests=false
after_script: bash scripts/cleanup.sh
after_failure: docker ps -a | grep '_alfresco_1' | awk '{print $1}' | xargs docker logs | tail -5000
after_script:
- bash scripts/getLogs.sh
- bash scripts/cleanup.sh
- &community_shared_UI_configuration
name: "Community Smoke UI Tests for Records"
@@ -83,7 +101,7 @@ jobs:
- travis_retry travis_wait 30 mvn -B -U -q clean install ${MVN_SKIP} -pl :alfresco-governance-services-automation-ui -am
script:
- travis_wait 90 xvfb-run --server-args="-screen 0 1920x1080x24" mvn -B test -pl :alfresco-governance-services-automation-ui -Dskip.automationtests=false -DsuiteXmlFile=communitySmokeRecords.xml -Dshare.url=${SHARE_URL} -Dalfresco.url=${ALFRESCO_URL} ${WEBDRIVER_ARGUMENTS}
after_failure: bash scripts/getLogs.sh
after_script: bash scripts/getLogs.sh
- <<: *community_shared_UI_configuration
name: "Community Smoke UI Tests for actions in RM site"
@@ -124,7 +142,7 @@ jobs:
- sudo free -m -t
script:
- travis_wait 90 xvfb-run --server-args="-screen 0 1920x1080x24" mvn -B test -pl :alfresco-governance-services-automation-ui -Dskip.automationtests=false -DsuiteXmlFile=enterpriseLevel2Tests.xml -Dshare.url=${SHARE_URL} -Dalfresco.url=${ALFRESCO_URL} ${WEBDRIVER_ARGUMENTS}
after_failure: bash scripts/getLogs.sh
after_script: bash scripts/getLogs.sh
- <<: *enterprise_shared_UI_configuration
name: "Enterprise Classification Level 2 UI Tests"
@@ -167,4 +185,6 @@ jobs:
- bash scripts/waitForAlfrescoToStart.sh
script:
- travis_wait 90 xvfb-run --server-args="-screen 0 1920x1080x24" mvn -B test -pl :alfresco-governance-services-automation-ui -DsuiteXmlFile=wormTestSuite.xml -Dskip.automationtests=false -Dshare.url=${SHARE_URL} -Dalfresco.url=${ALFRESCO_URL} ${WEBDRIVER_ARGUMENTS}
after_script: bash scripts/cleanup.sh
after_script:
- bash scripts/getLogs.sh
- bash scripts/cleanup.sh