Skip to content

Commit de91886

Browse files
committed
Merge branch 'topic/ci-issue-check' into 'master'
Add check for issue occurence in CI Closes #1192 See merge request eng/ide/ada_language_server!1408
2 parents c59023c + f0223a3 commit de91886

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.gitlab-ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
stages:
22
- build_and_test
3+
- check
34
- run_downstream_ci
45

6+
issue-check:
7+
services:
8+
- image:e3
9+
stage: check
10+
needs: [] # Do not wait for the other stages to execute
11+
interruptible: true # Cancel job if the branch is pushed
12+
variables: # do not checkout the git repository, not needed
13+
GIT_STRATEGY: none
14+
rules: # Launch only on merge requests
15+
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
16+
script:
17+
- require_issue # launch the verification
18+
519
.basic-setup:
620
# Use generic_anod_ci here.
721
- generic_anod_ci

0 commit comments

Comments
 (0)