List detector #2
This file contains hidden or 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: tests | |
| on: [workflow_call] | |
| jobs: | |
| # tests: | |
| # runs-on: ubuntu-latest | |
| # container: | |
| # image: oraclelinux:8 | |
| # steps: | |
| # - name: Install git | |
| # run: dnf install -y git | |
| # - name: Check out repository code | |
| # uses: actions/checkout@v4 | |
| # - name: Install dependencies | |
| # uses: ./.github/actions/install-dependencies | |
| # - name: Install lua | |
| # run: | | |
| # dnf --enablerepo=ol8_codeready_builder install lua-devel | |
| # - name: Install Nemea-Framework | |
| # run: | | |
| # dnf install -y bc autoconf automake gcc gcc-c++ libtool libxml2-devel make pkg-config bison flex readline-devel | |
| # - name: Run tests | |
| # run: | | |
| # git clone --recursive https://github.com/CESNET/nemea && cd nemea/ && ./bootstrap.sh && ./configure --enable-repobuild --prefix=/usr --bindir=/usr/bin/nemea --sysconfdir=/etc/nemea --libdir=/usr/lib64 && make && make install | |
| # export PATH=$(pwd)/nemea/modules/logger:$PATH | |
| # export PATH=$(pwd)/nemea/modules/logreplay:$PATH | |
| # - name: Run tests2 | |
| # run: | | |
| # cmake -S . -B build -DNM_NG_ENABLE_TESTS=On | |
| # - name: Run tests5 | |
| # run: | | |
| # make -C build install | |
| # - name: Install nemea | |
| # shell: bash | |
| # run: | | |
| # dnf install -y nemea | |
| # - name: Run tests3 | |
| # run: | | |
| # make -C build tests |