aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2023-03-22 18:17:25 +0100
committerGitHub <noreply@github.com>2023-03-22 18:17:25 +0100
commit04e017a854797c02a2cfc9fadd954fc0426f8e04 (patch)
tree1f578f627a200257bf2b3a0fff9867b93ac6bb1f /.github
parent64ebf73b2961f768ab52bdb05b4951bfe337f478 (diff)
Rework CI jobs to try reducing CI duration (#1903)
CI duration is quite long: the longest jobs is the "Performance" one. Try to reduce the overall duration: that job (and some others) will not be triggered for each PR/commit anymore, but asynchronously, once a day (this scheduling seems right since the frequency of the PR/commits in the project). It should be possibly to trigger them manually, via GUI, anyway. Remove two identical jobs; we already tests ASAN with 4 different compilers. After 9eff0754 it is safe to reduce fuzzing time. Bottom line: try to have as upper-time of CI tests the duration of the fuzzing jobs
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml120
-rw-r--r--.github/workflows/build_scheduled.yml109
-rw-r--r--.github/workflows/cifuzz.yml2
3 files changed, 110 insertions, 121 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index db781c128..379bd15aa 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,40 +10,6 @@ on:
release:
types: [created]
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
-
python-bindings:
name: Python Bindings (ubuntu-latest)
runs-on: ubuntu-latest
@@ -77,76 +43,6 @@ jobs:
run: |
cd python
python tests.py
-
- 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
-
test-scripts:
name: Test Utils (ubuntu-latest)
runs-on: ubuntu-latest
@@ -235,14 +131,6 @@ jobs:
gcrypt: ""
pcre: "--with-pcre"
maxminddb: "--with-maxminddb"
- msan: "--with-sanitizer"
- nBPF: ""
- - compiler: "cc"
- os: ubuntu-latest
- arch: "x86_64"
- gcrypt: ""
- pcre: "--with-pcre"
- maxminddb: "--with-maxminddb"
msan: "--with-thread-sanitizer"
nBPF: ""
- compiler: "cc"
@@ -262,14 +150,6 @@ jobs:
msan: "--with-memory-sanitizer"
nBPF: ""
- compiler: "cc"
- os: ubuntu-latest
- arch: "x86_64"
- gcrypt: ""
- pcre: "--with-pcre"
- maxminddb: "--with-maxminddb"
- msan: "--with-sanitizer"
- nBPF: ""
- - compiler: "cc"
os: macOS-latest
arch: "x86_64"
gcrypt: ""
diff --git a/.github/workflows/build_scheduled.yml b/.github/workflows/build_scheduled.yml
new file mode 100644
index 000000000..d3f9726ab
--- /dev/null
+++ b/.github/workflows/build_scheduled.yml
@@ -0,0 +1,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
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml
index da5cbff15..62f0d417c 100644
--- a/.github/workflows/cifuzz.yml
+++ b/.github/workflows/cifuzz.yml
@@ -18,7 +18,7 @@ jobs:
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'ndpi'
- fuzz-seconds: 1600
+ fuzz-seconds: 1200
dry-run: false
sanitizer: ${{ matrix.sanitizer }}
- name: Check Crash (fails when a crash is detected)