From a152bf0d96af46cb693b10ec9efba8e3c5ace871 Mon Sep 17 00:00:00 2001 From: Martin Beseda <martin.beseda@vsb.cz> Date: Wed, 27 Mar 2019 17:35:04 +0100 Subject: [PATCH] [ENH] Stopped launching CI for pushed frozen branches references (i.e. archive/* tags). --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b803f291..773f2e79 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,6 +23,9 @@ win_visual_studio_static_local_deps: script: - call build_scripts\windows\win_VS_build_x64_release.bat + except: + - archive/* + # Latest Ubuntu with dependencies # in system directories, Boost # installed from the official repository @@ -42,6 +45,9 @@ ubuntu_boost_system: script: - build_scripts/linux/linux_gcc_build_x64_debug_system.sh + except: + - archive/* + # Latest Ubuntu with dependencies # downloaded (and compiled) locally ubuntu_boost_local_static_deps: @@ -60,6 +66,9 @@ ubuntu_boost_local_static_deps: script: - build_scripts/linux/linux_gcc_build_x64_debug_local.sh + except: + - archive/* + # Latest CentOS with dependencies # downloaded (and compiled) locally centos_local_deps: @@ -77,3 +86,7 @@ centos_local_deps: script: - scl enable devtoolset-8 -- build_scripts/linux/linux_gcc_build_x64_debug_local.sh + + except: + - archive/* + -- GitLab