Implement sonarcloud suggestions #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Quality Assurance | |
on: | |
push: | |
pull_request: | |
jobs: | |
# build-linux: | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [ubuntu-22.04] | |
# platform: [x32, x64] | |
# compiler: [gcc, clang] | |
# configure: | |
# - {label: "with parser generation", opt: "--enable-parser-generation" } | |
# - {label: "wo curl", opt: "--without-curl" } | |
# - {label: "wo yajl", opt: "--without-yajl" } | |
# - {label: "wo geoip", opt: "--without-geoip" } | |
# - {label: "wo lmdb", opt: "--without-lmdb" } | |
# - {label: "with pcre2", opt: "--with-pcre2" } | |
# - {label: "wo lua", opt: "--without-lua" } | |
# - {label: "without maxmind", opt: "--without-maxmind" } | |
# steps: | |
# - name: Setup Dependencies | |
# run: | | |
# sudo apt-get update -y -qq | |
# sudo apt-get install -y libfuzzy-dev libyajl-dev libgeoip-dev liblua5.2-dev liblmdb-dev cppcheck libmaxminddb-dev libcurl4-openssl-dev libpcre2-dev pcre2-utils | |
# - uses: actions/checkout@v2 | |
# with: | |
# submodules: true | |
# - name: build.sh | |
# run: ./build.sh | |
# - name: configure ${{ matrix.configure.label }} | |
# run: ./configure ${{ matrix.configure.opt }} | |
# - uses: ammaraskar/gcc-problem-matcher@master | |
# - name: make | |
# run: make -j `nproc` | |
# - name: check | |
# run: make check | |
# - name: check-static | |
# run: make check-static | |
# build-macos: | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [macos-12] | |
# compiler: [clang] | |
# configure: | |
# - {label: "with parser generation", opt: "--enable-parser-generation" } | |
# - {label: "wo curl", opt: "--without-curl" } | |
# - {label: "wo yajl", opt: "--without-yajl" } | |
# - {label: "wo geoip", opt: "--without-geoip" } | |
# - {label: "wo lmdb", opt: "--without-lmdb" } | |
# - {label: "wo ssdeep", opt: "--without-ssdeep" } | |
# - {label: "wo lua", opt: "--without-lua" } | |
# - {label: "wo maxmind", opt: "--without-maxmind" } | |
# steps: | |
# - name: Setup Dependencies | |
# run: | | |
# brew install autoconf automake cppcheck lmdb libyaml lua ssdeep libmaxminddb bison | |
# - uses: actions/checkout@v2 | |
# with: | |
# submodules: true | |
# - name: build.sh | |
# run: ./build.sh | |
# - name: configure ${{ matrix.configure.label }} | |
# run: ./configure ${{ matrix.configure.opt }} | |
# - uses: ammaraskar/gcc-problem-matcher@master | |
# - name: make | |
# run: make -j `sysctl -n hw.logicalcpu` | |
# - name: check | |
# run: make check | |
cppcheck: | |
runs-on: [ubuntu-22.04] | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential wget unzip | |
wget https://github.com/danmar/cppcheck/archive/2.8.zip | |
unzip 2.8.zip | |
cd cppcheck-2.8 | |
make -j$(nproc) | |
sudo cp cppcheck /usr/bin/ | |
- name: Run Cppcheck | |
run: cppcheck --version | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: build.sh | |
run: ./build.sh | |
- name: configure | |
run: ./configure | |
- uses: ammaraskar/gcc-problem-matcher@master | |
- name: make | |
run: make -j `nproc` | |
- name: check | |
run: make check | |
- name: check-static | |
run: make check-static |