summaryrefslogtreecommitdiff
path: root/.github/workflows/build-centos.yml
blob: 0eea3dd45a22b324af5e4bd79b328ddd78ea5e62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CentOs

on:
  push:
    branches:
      - main
      - tmp
  pull_request:
    branches:
      - main
    types: [opened, synchronize, reopened]
  release:
    types: [created]

jobs:
  centos8:
    runs-on: ubuntu-latest
    container: 'centos:8'
    steps:
      - uses: actions/checkout@v3
        with:
          submodules: false
          fetch-depth: 1
      - name: Install CentOs Prerequisites
        run: |
          sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
          sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
          yum -y update
          yum -y install curl gpg
          curl 'https://packages.ntop.org/centos/ntop.repo' > /etc/yum.repos.d/ntop.repo
          curl 'https://packages.ntop.org/centos/RPM-GPG-KEY-deri' | gpg --import
          yum -y install yum-utils dnf-plugins-core epel-release
          dnf config-manager --set-enabled powertools
          yum -y update
          yum -y install rpm-build gcc gcc-c++ autoconf automake make cmake flex bison gettext pkg-config libtool ndpi-dev libpcap-devel zlib-devel python3.8 git wget unzip /usr/lib64/libasan.so.5.0.0 /usr/lib64/libubsan.so.1.0.0
          repoquery -l ndpi-dev
      - name: Configure nDPId
        run: |
          mkdir build && cd build
          cmake .. -DENABLE_SYSTEMD=ON -DBUILD_EXAMPLES=ON -DENABLE_SANITIZER=ON -DNDPI_NO_PKGCONFIG=ON -DSTATIC_LIBNDPI_INSTALLDIR=/usr
      - name: Build nDPId
        run: |
          make -C build all VERBOSE=1
      - name: CPack RPM
        run: |
          cd ./build && cpack -G RPM && cd ..
      - name: Upload RPM
        uses: actions/upload-artifact@v3
        with:
          name: nDPId-centos-packages
          path: build/*.rpm
      - name: Upload on Failure
        uses: actions/upload-artifact@v3
        if: failure()
        with:
          name: autoconf-config-log
          path: |
            build/CMakeCache.txt
            libnDPI/config.log