File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1818 - name : Install dependencies
1919 run : |
2020 sudo apt-get update
21- sudo apt-get -y install git build-essential autoconf libtool libpcap-dev pkg-config libxml2-dev libunwind-dev
21+ sudo apt-get -y install git build-essential autoconf libtool libpcap-dev pkg-config libxml2-dev libunwind-dev libfuse3-dev fuse3 cmake
2222 ( git clone --depth 1 https://github.com/CESNET/nemea-framework /tmp/nemea-framework; cd /tmp/nemea-framework; ./bootstrap.sh &&./configure --bindir=/usr/bin/nemea/ -q &&make -j10 && sudo make install; sudo ldconfig)
2323 ( git clone --depth 1 https://github.com/CESNET/nemea-modules /tmp/nemea-modules; cd /tmp/nemea-modules; ./bootstrap.sh &&./configure --bindir=/usr/bin/nemea/ -q &&make -j10 && sudo make install; )
24+ ( git clone -b release --depth 1 https://github.com/CESNET/telemetry /tmp/telemetry; cd /tmp/telemetry; mkdir build && cd build; cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&make -j10 && sudo make install; )
2425 - name : autoreconf
2526 run : autoreconf -i
2627 - name : configure
Original file line number Diff line number Diff line change @@ -30,11 +30,12 @@ jobs:
3030 - name : Install dependencies
3131 run : |
3232 sudo apt-get update
33- sudo apt-get -y install git build-essential autoconf libtool libpcap-dev pkg-config libxml2-dev
33+ sudo apt-get -y install git build-essential autoconf libtool libpcap-dev pkg-config libxml2-dev libfuse3-dev fuse3 cmake
3434 ( git clone --depth 1 https://github.com/CESNET/nemea-framework /tmp/nemea-framework; cd /tmp/nemea-framework; ./bootstrap.sh &&./configure --bindir=/usr/bin/nemea/ -q &&make -j10 && sudo make install; sudo ldconfig)
35+ ( git clone -b release --depth 1 https://github.com/CESNET/telemetry /tmp/telemetry; cd /tmp/telemetry; mkdir build && cd build; cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&make -j10 && sudo make install; )
3536 # Initializes the CodeQL tools for scanning.
3637 - name : Initialize CodeQL
37- uses : github/codeql-action/init@v1
38+ uses : github/codeql-action/init@v2
3839 with :
3940 languages : ${{ matrix.language }}
4041 # If you wish to specify custom queries, you can do so here or in a config file.
4546 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4647 # If this step fails, then you should remove it and run the build manually (see below)
4748 # - name: Autobuild
48- # uses: github/codeql-action/autobuild@v1
49+ # uses: github/codeql-action/autobuild@v2
4950
5051 # ℹ️ Command-line programs to run using the OS shell.
5152 # 📚 https://git.io/JvXDl
6465 make
6566
6667 - name : Perform CodeQL Analysis
67- uses : github/codeql-action/analyze@v1
68+ uses : github/codeql-action/analyze@v2
Original file line number Diff line number Diff line change 1616 - name : Install dependencies
1717 run : |
1818 sudo apt-get update
19- sudo apt-get -y install git build-essential autoconf libtool libpcap-dev pkg-config libxml2-dev
19+ sudo apt-get -y install git build-essential autoconf libtool libpcap-dev pkg-config libxml2-dev libfuse3-dev fuse3 cmake
2020 ( git clone --depth 1 https://github.com/CESNET/nemea-framework /tmp/nemea-framework; cd /tmp/nemea-framework; ./bootstrap.sh &&./configure --bindir=/usr/bin/nemea/ -q &&make -j10 && sudo make install; sudo ldconfig)
2121 ( git clone --depth 1 https://github.com/CESNET/nemea-modules /tmp/nemea-modules; cd /tmp/nemea-modules; ./bootstrap.sh &&./configure --bindir=/usr/bin/nemea/ -q &&make -j10 && sudo make install; )
22+ ( git clone -b release --depth 1 https://github.com/CESNET/telemetry /tmp/telemetry; cd /tmp/telemetry; mkdir build && cd build; cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&make -j10 && sudo make install; )
2223 - name : autoreconf
2324 run : autoreconf -i
2425 - name : configure
You can’t perform that action at this time.
0 commit comments