Updated gui with various fix to charts and tables #8659
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: Build | |
| on: | |
| pull_request: | |
| branches: [dev] | |
| push: | |
| branches: [dev] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Ubuntu Prerequisites | |
| run: | | |
| sudo apt-get update || true | |
| sudo apt-get install build-essential | |
| sudo apt-get install libglib2.0 libxml2-dev libpcap-dev librrd-dev redis-server libsqlite3-dev libhiredis-dev libmaxminddb-dev libcurl4-openssl-dev libzmq3-dev git libjson-c-dev | |
| - name: Build nDPI | |
| run: | | |
| git clone https://github.com/ntop/nDPI.git; cd nDPI; ./autogen.sh; ./configure; make; cd .. | |
| - name: Configure | |
| run: | | |
| ./autogen.sh | |
| ./configure | |
| - name: Build | |
| run: make | |