aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: d8773534fe0bcaaec6168c3663a61dea17c0c0ee (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
lin_dbg:
  script:
    - python ./waf -dsT --no-coverage configure build test

lin_rel:
  script:
    - python ./waf -sT --no-coverage configure build test

mac_dbg:
  script:
    - python ./waf -dsT --no-coverage configure build test
  tags:
    - macos

mac_rel:
  script:
    - python ./waf -sT --no-coverage configure build test
  tags:
    - macos

win_dbg:
  script:
    - python ./waf -dsT --no-coverage configure build test
  tags:
    - windows

win_rel:
  script:
    - python ./waf -sT --no-coverage configure build test
  tags:
    - windows