-
Notifications
You must be signed in to change notification settings - Fork 42
/
.gitlab-ci.yml
41 lines (33 loc) · 929 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
include:
- local: utils/gitlab-ci-common.yml
stages:
- single
build_and_test:
extends: .basic
rules:
# Run this for merge requests only
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
services:
- image:pe-base
- cpu:16
- mem:16
stage: single
script:
# We frequently push coupled changes to Libadalang and Langkit: when this
# happens, it is no longer possible to build Libadalang with Langkit's
# production package for that day. To solve this problem,
# always pretend that we have Langkit changes in the pipe: Langkit is
# fairly fast to build anyway.
- generic_anod_ci --add-dep eng/libadalang/langkit
- . /tmp/ci_env.sh
- anod test libadalang $ACI_TRACK_QUALIFIER
- testsuite_reports
artifacts:
reports:
junit: xunit-*.xml
check_issue:
extends: .check_issue
stage: single
continuous_builder:
extends: .cb
stage: single