aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: b3c929db0d902dbba8cb4bc826bd5404a1f2299e (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
58
59
60
61
62
63
64
65
66
67
68
69
stages:
  - build
  - test
  - analysis

build-debian:
  image: debian:stable
  script:
    - apt-get update -qq && apt-get install -y -qq coreutils make autoconf automake gcc pkg-config libseccomp-dev libssh-dev valgrind
    - ./autogen.sh
    - CFLAGS="-DHAVE_SECCOMP=1" ./configure
    - make V=s
    - TERM=linux valgrind --error-exitcode=1 ./src/potd --test --redirect 127.0.0.1:2222:127.0.0.1:22222 --protocol 127.0.0.1:22222:127.0.0.1:33333 --jail 127.0.0.1:33333
    - cp ./src/potd ./src/potd-full
    - cp ./config.log ./config-full.log
    - apt-get purge -y -qq libseccomp2 libseccomp-dev
    - ./configure
    - make V=s
    - TERM=linux valgrind --error-exitcode=1 ./src/potd --test --redirect 127.0.0.1:2222:127.0.0.1:22222 --protocol 127.0.0.1:22222:127.0.0.1:33333 --jail 127.0.0.1:33333
  stage: build
  artifacts:
    paths:
      - ./src/potd-full
      - ./config-full.log
      - ./src/potd
      - ./config.log

build-arch:
  image: base/archlinux
  script:
    - pacman -Syu --noconfirm coreutils make autoconf automake gcc pkg-config libseccomp libssh valgrind
    - ./autogen.sh
    - CFLAGS="-DHAVE_SECCOMP=1" ./configure
    - make V=s
    - TERM=linux valgrind --error-exitcode=1 ./src/potd --test --redirect 127.0.0.1:2222:127.0.0.1:22222 --protocol 127.0.0.1:22222:127.0.0.1:33333 --jail 127.0.0.1:33333
    - cp ./src/potd ./src/potd-full
    - cp ./config.log ./config-full.log
    - pacman -Rsn --noconfirm libseccomp
    - ./configure
    - make V=s
    - TERM=linux valgrind --error-exitcode=1 ./src/potd --test --redirect 127.0.0.1:2222:127.0.0.1:22222 --protocol 127.0.0.1:22222:127.0.0.1:33333 --jail 127.0.0.1:33332
  stage: test
  artifacts:
    paths:
      - ./src/potd-full
      - ./config-full.log
      - ./src/potd
      - ./config.log

flawfinder:
  image: base/archlinux
  stage: analysis
  script:
    - pacman -Syu --noconfirm flawfinder
    - flawfinder --minlevel=3 -QD .
    - flawfinder --inputs --minlevel=3 -QD .
    - flawfinder --html --minlevel=3 . >./flawfinder.html
    - flawfinder --html --inputs --minlevel=3 . >./flawfinder_inputs.html
  artifacts:
    paths:
      - ./flawfinder.html
      - ./flawfinder_inputs.html

cppcheck:
  image: base/archlinux
  stage: analysis
  script:
    - pacman -Syu --noconfirm cppcheck
    - cppcheck --enable=all --inconclusive --std=posix .