From: Aleš Mrázek Date: Wed, 18 Jun 2025 14:14:54 +0000 (+0200) Subject: .gitlab-ci.yml: python:run: added second configuration X-Git-Tag: v6.0.15~9^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc58dcebfbf88ac7f9c52326e6832394f21077ff;p=thirdparty%2Fknot-resolver.git .gitlab-ci.yml: python:run: added second configuration --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db9c198e7..a28d9cfa8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -915,13 +915,18 @@ python:run: stage: test parallel: matrix: - - CONFIG_FILE_NAME: - - config.dev.yaml - script: + # additional configuration file + - ADD_CONFIG_FILE_NAME: + - config.test-defer.yaml + - config.test-forward.yaml + - config.test-local-data.yaml + - config.test-rate-limiting.yaml + script: + - touch etc/config/blocklist.rpz - poetry install --all-extras --only main,dev - poe configure # return code 124 is also OK - - timeout 1m poe run || ( [[ $? -eq 124 ]] ) + - timeout 1m poe run etc/config/${ADD_CONFIG_FILE_NAME} || ( [[ $? -eq 124 ]] ) python:unit: <<: *python