-if:$CI_PIPELINE_SOURCE == 'push' && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH# Pushes to main
-if:$CI_PIPELINE_SOURCE == 'schedule' && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH# Scheduled in main
-if:$CI_PIPELINE_SOURCE == 'web'# for testing
-if:$CI_PIPELINE_SOURCE == 'trigger'
stages:
-.pre
@@ -135,6 +136,8 @@ stages:
when:never
-if:$CI_PIPELINE_SOURCE == 'schedule'# Don't run in any scheduled pipelines by default (use schedule templates below to enable again for certain conditions)
when:never
-if:$CI_PIPELINE_SOURCE == 'trigger'# Don't run triggered pipeline by default
when:never
-when:on_success
.rules-merge-request:
@@ -348,7 +351,6 @@ codec-msan:
needs:["build-codec-sanitizers-linux"]
script:
-*print-common-info
-python3 ci/disable_ram_counting.py
-make clean
-make -j CLANG=1
-python3 scripts/self_test.py --create | tee test_output.txt
@@ -371,7 +373,6 @@ codec-asan:
needs:["build-codec-sanitizers-linux"]
script:
-*print-common-info
-python3 ci/disable_ram_counting.py
-make clean
-make -j CLANG=2
-python3 scripts/self_test.py --create | tee test_output.txt