Add INTEGRATION_TESTS_ARGS gitlab-ci variable (#3605)

This allows tweaking integration tests params on the fly (in Gitlab GUI https://docs.gitlab.com/ee/ci/variables/#create-a-custom-variable-in-the-ui).
This commit is contained in:
UdjinM6 2020-07-14 16:12:54 +03:00 committed by GitHub
parent 78dc8c354d
commit 36e18d9b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,8 +112,11 @@ builder-image:
.test-template: .test-template:
stage: test stage: test
extends: .base-template extends: .base-template
variables:
INTEGRATION_TESTS_ARGS: "--extended --exclude pruning,dbcrash"
script: script:
- ./ci/test_integrationtests.sh --extended --exclude pruning,dbcrash - echo "INTEGRATION_TESTS_ARGS=${INTEGRATION_TESTS_ARGS}"
- ./ci/test_integrationtests.sh $INTEGRATION_TESTS_ARGS
after_script: after_script:
- mkdir -p $CI_PROJECT_DIR/testlogs - mkdir -p $CI_PROJECT_DIR/testlogs
artifacts: artifacts: