summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: dd183bcd165b3a91bb762766e5eac410f69f209c (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
Build and Check - separate build dir:
  script:
  - git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure
    --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check
  - cat tests/test-suite.log
  tags:
  - nettle2
  except:
  - tags
Build and Check with valgrind:
  script:
  - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c && ./configure
    --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check
  - cat tests/test-suite.log
  tags:
  - x86-64
  - nettle2
  except:
  - tags
Build and Check with asan:
  script:
  - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&CFLAGS="-fsanitize=address -g
    -O2" LDFLAGS="-static-libasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile
    && make -j4 && make check
  - cat tests/test-suite.log
  tags:
  - x86-64
  - nettle2
  except:
  - tags