summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 8d44cbb739517a5006a26c00dede0d11dc5e7a46 (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
# See http://doc.gitlab.com/ce/ci/yaml/ for documentation.
Build and Check (x86-64):
  script:
  - ./.bootstrap &&
    ./configure --disable-documentation && make -j4 &&
    make check -j4
  tags:
  - x86-64
  except:
  - tags
Build and Check (x86):
  script:
  - ./.bootstrap &&
    ./configure --disable-documentation && make -j4 &&
    make check -j4
  tags:
  - x86
  except:
  - tags
Build and Check with ubsan:
  script:
  - ./.bootstrap && 
    CXXFLAGS="-fsanitize=undefined -fno-sanitize-recover -g -O2" CFLAGS="-fsanitize=undefined -fno-sanitize-recover -g -O2" ./configure 
    --disable-documentation && make -j4 && make check -j4
  tags:
  - ubsan
  except:
  - tags
Build and Check with asan:
  script:
  - ./.bootstrap && 
  - CXXFLAGS="-fsanitize=address -g -O2" CFLAGS="-fsanitize=address -g -O2" ./configure --disable-documentation &&
    make -j4 && make check -j4
  except:
  - tags