From 1459d8f82b4c23f2d46757e20c08b9530dcf8c12 Mon Sep 17 00:00:00 2001 From: Dmitry Rodionov <d.rodionov@picodata.io> Date: Tue, 4 Jun 2024 14:47:02 +0300 Subject: [PATCH] ci: do not run tests for patched picodata on every push These tests are quire lengthy and are useful only when we changed the patchset. So run them always on master, and if `certification_patches` dir contains any changes. Otherwise use `when: manual` --- .gitlab-ci.yml | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f60b47c75..aedcb3e1e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -251,20 +251,39 @@ test-linux: reports: junit: junit_pytest.xml -test-patch-picodata: - extends: .test - tags: - - docker +.test-patch-rules: &test-patch-rules rules: - <<: *if-build-base-changes-on-master-branch variables: BASE_IMAGE_TAG: ${BASE_IMAGE_TAG} + # build base didnt chage but we still want the job to run + - if: $CI_COMMIT_BRANCH == $MAIN_BRANCH + variables: + BASE_IMAGE_TAG: ${BASE_IMAGE_TAG} - <<: *if-build-base-changes-on-dev-branch + when: manual variables: BASE_IMAGE_TAG: ${CI_COMMIT_SHA} - - <<: *else + # build base didnt change but we still want the job to run + # in case certification_patches has changed + - if: $CI_COMMIT_BRANCH != $MAIN_BRANCH + changes: + - certification_patches/**/* + allow_failure: true + variables: + BASE_IMAGE_TAG: ${BASE_IMAGE_LATEST} + # manual in other cases + - if: $CI_COMMIT_BRANCH != $MAIN_BRANCH + when: manual + allow_failure: true variables: BASE_IMAGE_TAG: ${BASE_IMAGE_LATEST} + +test-patch-picodata: + extends: .test + tags: + - docker + <<: *test-patch-rules variables: GIT_DEPTH: 1 GIT_SUBMODULE_STRATEGY: recursive @@ -294,16 +313,7 @@ test-patch-tarantool: extends: .test tags: - docker - rules: - - <<: *if-build-base-changes-on-master-branch - variables: - BASE_IMAGE_TAG: ${BASE_IMAGE_TAG} - - <<: *if-build-base-changes-on-dev-branch - variables: - BASE_IMAGE_TAG: ${CI_COMMIT_SHA} - - <<: *else - variables: - BASE_IMAGE_TAG: ${BASE_IMAGE_LATEST} + <<: *test-patch-rules variables: GIT_DEPTH: 1 GIT_SUBMODULE_STRATEGY: recursive -- GitLab