summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 97cb183f103840dc57a0019a17b44a93ccd25553 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Build and Check - FIPS140-2 (x86-64):
  script:
  - git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure
    --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check -j4
  - cat tests/test-suite.log
  tags:
  - x86-64
  - nettle2
  except:
  - tags
Build and Check - with SSL3/ARCFOUR:
  script:
  - git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure
    --with-ssl3 --with-arcfour128 --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check -j4
  - cat tests/test-suite.log
  tags:
  - nettle2
  except:
  - tags
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 -j4
  - 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 -j4
  - cat tests/test-suite.log
  tags:
  - x86-64
  - nettle2
  except:
  - tags
Build and Check with asan (nettle2):
  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 -j4
  tags:
  - nettle2
  except:
  - tags
Build and Check with asan (nettle3):
  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 -j4
  tags:
  - x86-64
  - nettle3
  except:
  - tags