From: Jason Ish Date: Thu, 29 Sep 2022 18:37:16 +0000 (-0600) Subject: github-ci: add Fedora 36 gcc builder X-Git-Tag: suricata-7.0.0-rc2~348 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4105ac436efa4cf4e215d788422d5f988e595383;p=thirdparty%2Fsuricata.git github-ci: add Fedora 36 gcc builder The existing Fedora 36 builder used clang. Add a gcc builder as it can show different errors. --- diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 8f18b73686..6567f69d82 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -651,8 +651,8 @@ jobs: fail_ci_if_error: false flags: suricata-verify - fedora-36: - name: Fedora 36 (debug, clang, asan, wshadow, rust-strict, systemd) + fedora-36-clang: + name: Fedora 36 (clang, debug, asan, wshadow, rust-strict, systemd) runs-on: ubuntu-latest container: fedora:36 needs: [prepare-deps, prepare-cbindgen] @@ -754,6 +754,97 @@ jobs: # Check compilation against systemd - run: ldd src/suricata | grep libsystemd &> /dev/null + fedora-36-gcc: + name: Fedora 36 (gcc, debug, asan, wshadow, rust-strict) + runs-on: ubuntu-latest + container: fedora:36 + needs: [prepare-deps, prepare-cbindgen] + steps: + + # Cache Rust stuff. + - name: Cache cargo registry + uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 + with: + path: ~/.cargo/registry + key: cargo-registry + + - run: | + dnf -y install \ + autoconf \ + automake \ + cargo \ + ccache \ + diffutils \ + file-devel \ + gcc \ + gcc-c++ \ + git \ + hiredis-devel \ + jansson-devel \ + jq \ + lua-devel \ + libasan \ + libtool \ + libyaml-devel \ + libnfnetlink-devel \ + libnetfilter_queue-devel \ + libnet-devel \ + libcap-ng-devel \ + libevent-devel \ + libmaxminddb-devel \ + libpcap-devel \ + libtool \ + lz4-devel \ + make \ + nss-softokn-devel \ + pcre2-devel \ + pkgconfig \ + python3-yaml \ + sudo \ + which \ + zlib-devel + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + - uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 + with: + name: prep + path: prep + - run: tar xf prep/libhtp.tar.gz + - run: tar xf prep/suricata-update.tar.gz + - name: Setup cbindgen + run: | + mkdir -p $HOME/.cargo/bin + cp prep/cbindgen $HOME/.cargo/bin + chmod 755 $HOME/.cargo/bin/cbindgen + echo "$HOME/.cargo/bin" >> $GITHUB_PATH + - run: ./autogen.sh + - run: ./configure --enable-debug --enable-unittests --disable-shared --enable-rust-strict --enable-hiredis --enable-nfqueue + env: + CFLAGS: "${{ env.DEFAULT_CFLAGS }} -Wshadow -fsanitize=address -fno-omit-frame-pointer" + LDFLAGS: "-fsanitize=address" + ac_cv_func_realloc_0_nonnull: "yes" + ac_cv_func_malloc_0_nonnull: "yes" + - run: make -j2 + - run: ASAN_OPTIONS="detect_leaks=0" ./src/suricata -u -l . + - name: Extracting suricata-verify + run: tar xf prep/suricata-verify.tar.gz + - name: Running suricata-verify + run: python3 ./suricata-verify/run.py -q + # Now install and make sure headers and libraries aren't install + # until requested. + - run: make install + - run: test ! -e /usr/local/lib/libsuricata_c.a + - run: test ! -e /usr/local/include/suricata + - run: make install-headers + - run: test -e /usr/local/include/suricata/suricata.h + - run: make install-library + - run: test -e /usr/local/lib/libsuricata_c.a + - run: test -e /usr/local/lib/libsuricata_rust.a + - run: test -e /usr/local/bin/libsuricata-config + - run: test ! -e /usr/local/lib/libsuricata.so + - run: make install + - run: suricata-update -V + - run: suricatasc -h + fedora-36-non-root: name: Fedora 36 (non-root, debug, clang, asan, wshadow, rust-strict, systemd) runs-on: ubuntu-latest