Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d3382ee5 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

Do not perform ci build/tests during merge_requests if the branch name starts...

Do not perform ci build/tests during merge_requests if the branch name starts with notest- (because we know the modifications have no impact on these tests)
parent 56eb9c61
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,8 @@ default: ...@@ -12,6 +12,8 @@ default:
only: only:
- master@solverstack/chameleon - master@solverstack/chameleon
- /^ci-.*$/ - /^ci-.*$/
except:
- /^notest-.*$/
.only-branches: .only-branches:
except: ['schedule'] except: ['schedule']
...@@ -20,6 +22,8 @@ default: ...@@ -20,6 +22,8 @@ default:
- merge_requests - merge_requests
- master@solverstack/chameleon - master@solverstack/chameleon
- /^ci-.*$/ - /^ci-.*$/
except:
- /^notest-.*$/
.build_script_template: .build_script_template:
stage: build stage: build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment