diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2021-02-24 21:36:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-02-24 21:36:44 +0000 |
commit | ee115ea2c240773e94ffdffa51582a9326774a01 (patch) | |
tree | 1916ad6e9762d5843931d47cb25d4094d2d20877 /jjb/sdc/sdc.yaml | |
parent | 83f48d354e08afe7250e968dd837df34a63058b9 (diff) | |
parent | 1bb38c47e537d04a4d0b604e497cd51008694ed1 (diff) |
Merge "[SDC] Use default template for CSIT jobs"
Diffstat (limited to 'jjb/sdc/sdc.yaml')
-rw-r--r-- | jjb/sdc/sdc.yaml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/jjb/sdc/sdc.yaml b/jjb/sdc/sdc.yaml index de4ece0ab..1d814029b 100644 --- a/jjb/sdc/sdc.yaml +++ b/jjb/sdc/sdc.yaml @@ -28,13 +28,29 @@ project-name: 'sdc' jobs: - '{project-name}-{stream}-verify-java': + # this build is unit test only (Verify 1/2) mvn-params: '-P skip-integration-tests -Dnpm.registry=https://nexus3.onap.org/repository/npm.public/' build-node: 'ubuntu1804-docker-8c-8g' - '{project-name}-{stream}-sdc-merge-java': - build-node: 'ubuntu1804-docker-8c-8g' + build-node: 'ubuntu1804-docker-8c-16g' docker-pom: 'pom.xml' - mvn-profile: 'skip-integration-tests' + mvn-profile: 'docker' mvn-params: '-Dnpm.registry=https://nexus3.onap.org/repository/npm.public/' + # running everything (unit tests and integration tests in a single job for merge, as we don't need // run + # for merge, but still saving integration tests results and report. + archive-artifacts: > + **/*.log + **/hs_err_*.log + **/target/**/feature.xml + **/target/failsafe-reports/failsafe-summary.xml + **/target/surefire-reports/*-output.txt + integration-tests/target/ExtentReport/API/*.html + integration-tests/target/ExtentReport/UI/*.html + integration-tests/target/ExtentReport/UI/screenshots/*.png + /tmp/sdc-integration-tests/*.log* + /tmp/sdc-integration-tests/SDC/ONBOARDING-BE/*.log + /tmp/sdc-integration-tests/SDC/SDC-BE/*.log + /tmp/sdc-integration-tests/SDC/SDC-FE/*.log - gerrit-maven-stage: build-timeout: 90 sign-artifacts: true |