aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build_scheduled.yml
blob: d3f9726ab0170ef7a58dc8b68b1a463eee01ff1b (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
on:
  workflow_dispatch:
  schedule:
    #At the end of every day
    - cron: '0 0 * * *'

jobs:
  coverage:
    name: Coverage (ubuntu-latest)
    runs-on: ubuntu-latest
    env:
      CFLAGS: -Werror
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
      - name: Install Ubuntu Prerequisites
        run: |
          sudo apt-get update
          sudo apt-get install autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev
          sudo apt-get install rrdtool librrd-dev
          sudo apt-get install libpcre3-dev libmaxminddb-dev lcov
          sudo apt-get install wdiff colordiff
      - name: Configure
        run: ./autogen.sh --enable-option-checking=fatal --enable-debug-messages --enable-code-coverage --with-pcre --with-maxminddb --enable-tls-sigs
      - name: Build
        run: make all
      - name: Test
        run: |
          make check VERBOSE=1
      - name: Generate Coverage Report
        run: |
          mkdir -vp coverage_report/ndpi_coverage_report
          lcov --directory . --capture --output-file lcov.info
          genhtml -o coverage_report/ndpi_coverage_report lcov.info
      - uses: actions/upload-artifact@v3
        with:
          name: ndpi-coverage-report
          path: coverage_report
          retention-days: 7

  documentation:
    name: Documentation (ubuntu-latest)
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
      - name: Set up Python 3.9
        uses: actions/setup-python@v4
        with:
          python-version: "3.9"
      - name: Install Ubuntu Prerequisites
        run: |
          sudo apt-get update
          sudo apt-get install autoconf automake libtool pkg-config gettext flex bison doxygen
      - name: Configure nDPI library
        run: |
          ./autogen.sh --with-only-libndpi --enable-option-checking=fatal
      - name: Generate Documentation
        run: |
          pip install --upgrade pip
          pip install -r doc/requirements.txt
          make doc
          mkdir -vp doc/_build/ndpi-documentation-upload/ndpi-documentation
          mv -v doc/_build/html doc/_build/ndpi-documentation-upload/ndpi-documentation/html
      - uses: actions/upload-artifact@v3
        with:
          name: ndpi-documentation
          path: doc/_build/ndpi-documentation-upload
          retention-days: 7

  performance:
    name: Performance (ubuntu-latest)
    runs-on: ubuntu-latest
    env:
      GO111MODULE: on
      CFLAGS: -Werror
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
      - name: Install Ubuntu Prerequisites
        run: |
          sudo add-apt-repository ppa:longsleep/golang-backports
          sudo apt-get update
          sudo apt-get install libunwind-dev
          sudo apt-get install autoconf automake libtool pkg-config gettext flex bison libpcap-dev
          sudo apt-get install golang-1.16-go libgoogle-perftools-dev graphviz
          go install github.com/google/pprof@latest
          sudo ln -s ${HOME}/go/bin/pprof /usr/bin/pprof
          pprof -h
      - name: Configure nDPI library
        run: |
          ./autogen.sh --enable-gprof --enable-option-checking=fatal --with-pcre --with-maxminddb --enable-tls-sigs
      - name: Build nDPI library
        run: |
          make
      - name: Performance Profiling
        run: |
          ./tests/do.sh
          mkdir ndpi-performance-upload
          mv -v tests/result/cpu_profile.png ndpi-performance-upload/cpu_profile.png
          mv -v tests/result/heap_profile.png ndpi-performance-upload/heap_profile.png
      - uses: actions/upload-artifact@v3
        with:
          name: ndpi-performance
          path: ndpi-performance-upload
          retention-days: 7