aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 5fdb5ef8a903c448b8c173d5e7c5eae4fcfd7db3 (plain)
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
stages:
  - build

.build_template: &build_definition
  stage: build

amd64_dbg:
  <<: *build_definition
  image: drobilla/debian-stretch
  script: python ./waf configure build -dsT --no-coverage

amd64_rel:
  <<: *build_definition
  image: drobilla/debian-stretch
  script: python ./waf configure build -sT --no-coverage

mac_dbg:
  <<: *build_definition
  script: python ./waf configure build -dsT --no-coverage
  tags:
    - macos

mac_rel:
  <<: *build_definition
  script: python ./waf configure build -sT --no-coverage
  tags:
    - macos

win_dbg:
  <<: *build_definition
  script:
    - python ./waf configure build -dT --no-coverage
  tags:
    - windows

win_rel:
  <<: *build_definition
  script: python ./waf configure build -T --no-coverage
  tags:
    - windows