-
Notifications
You must be signed in to change notification settings - Fork 39
187 lines (173 loc) · 7.01 KB
/
packages.yml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
name: Build RPM/DEB packages
on:
# Ignore changes in extra plugins (as they are not tested here)
push:
paths-ignore:
- 'extra_plugins/**'
pull_request:
paths-ignore:
- 'extra_plugins/**'
jobs:
deb:
# Try to build DEB packages
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image: ['ubuntu:20.04', 'ubuntu:22.04', 'debian:buster', 'debian:bullseye', 'debian:bookworm']
name: Build DEBs on ${{ matrix.image }}
container: ${{ matrix.image }}
steps:
- uses: actions/checkout@v2
- name: Define variables
uses: actions/github-script@v5
with:
script: |
const sha = context.sha.substring(0, 8);
const image = `${{ matrix.image }}`
const distro = image.split('/').pop().replace(/:/g,'_');
const zip = `ipfixcol2-${distro}-${sha}`;
core.exportVariable('ZIP_FILE', zip);
- name: Prepare environment
run: |
mkdir -p build/libfds_repo
# Dependencies ---------------------------------------------------------------------------
- name: Install dependencies for libfds and IPFIXcol2 (Ubuntu/Debian)
run: |
apt-get update
apt-get -y install git gcc g++ cmake make libxml2-dev liblz4-dev libzstd-dev
apt-get -y install python3-docutils zlib1g-dev pkg-config librdkafka-dev
apt-get -y install debhelper devscripts build-essential fakeroot zip
env:
DEBIAN_FRONTEND: noninteractive
# Build LIBFDS DEB package ---------------------------------------------------------------
- name: Checkout libfds library - master branch
if: github.ref == 'refs/heads/master'
run: git clone --branch master https://github.com/CESNET/libfds.git build/libfds_repo
- name: Checkout libfds library - devel branch
if: github.ref != 'refs/heads/master'
run: git clone --branch devel https://github.com/CESNET/libfds.git build/libfds_repo
- name: Build DEBs of libfds library and install them
working-directory: 'build/libfds_repo'
run: |
mkdir build && cd build
cmake .. -DPACKAGE_BUILDER_DEB=On -DCPACK_PACKAGE_CONTACT="GitHub actions <[email protected]>"
make deb
apt -y install ./pkg/deb/debbuild/libfds*.deb
# Build IPFIXcol2 DEB package ------------------------------------------------------------
- name: Build IPFIXcol2 DEBs and install them
run: |
cd build
cmake .. -DPACKAGE_BUILDER_DEB=On -DCPACK_PACKAGE_CONTACT="GitHub actions <[email protected]>"
make deb
apt -y install ./pkg/deb/debbuild/*.deb
- name: Try to run IPFIXcol2
run: |
ipfixcol2 -V
ipfixcol2 -h
ipfixcol2 -L
- name: Archive DEB packages
if: github.event_name == 'push'
uses: actions/upload-artifact@v2
with:
name: ${{ env.ZIP_FILE }}
path: |
build/pkg/deb/debbuild/*.deb
build/pkg/deb/debbuild/*.ddeb
build/pkg/deb/debbuild/*.tar.gz
build/pkg/deb/debbuild/*.dsc
rpm:
# Try to build RPM packages
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image:
- 'rockylinux:8'
- 'oraclelinux:8'
- 'oraclelinux:9'
name: Build RPMs on ${{ matrix.image }}
container: ${{ matrix.image }}
steps:
- name: Define variables
uses: actions/github-script@v5
with:
script: |
const sha = context.sha.substring(0, 8);
const image = `${{ matrix.image }}`
const distro = image.split('/').pop().replace(/:/g,'_');
const zip = `ipfixcol2-${distro}-${sha}`;
core.exportVariable('ZIP_FILE', zip);
- name: Prepare environment
run: |
mkdir -p build/libfds_repo
# Dependencies ---------------------------------------------------------------------------
- name: Enable additional repositories (Rocky Linux)
if: contains(matrix.image, 'rockylinux')
run: |
dnf -y install 'dnf-command(config-manager)'
dnf config-manager --set-enabled appstream powertools
- name: Enable additional repositories (Oracle Linux 8)
if: contains(matrix.image, 'oraclelinux:8')
run: |
dnf -y install 'dnf-command(config-manager)'
dnf config-manager --set-enabled ol8_appstream ol8_codeready_builder
- name: Enable additional repositories (Oracle Linux 9)
if: contains(matrix.image, 'oraclelinux:9')
run: |
dnf -y install 'dnf-command(config-manager)'
dnf config-manager --set-enabled ol9_appstream ol9_codeready_builder
- name: Enable EPEL (Rocky Linux)
if: contains(matrix.image, 'Rocky Linux')
run: |
yum -y install epel-release
- name: Enable EPEL (Oracle Linux 8)
if: contains(matrix.image, 'oraclelinux:8')
run: |
dnf -y install oracle-epel-release-el8
- name: Enable EPEL (Oracle Linux 9)
if: contains(matrix.image, 'oraclelinux:9')
run: |
dnf -y install oracle-epel-release-el9
- name: Install dependencies for libfds and IPFIXcol2 (Rocky Linux, Oracle Linux)
if: contains(matrix.image, 'rockylinux') || contains(matrix.image, 'oraclelinux')
run: |
yum -y install git gcc gcc-c++ cmake make libxml2-devel lz4-devel libzstd-devel
yum -y install zlib-devel pkgconfig rpm-build librdkafka-devel
yum -y install python3-docutils || yum -y install python-docutils
# Checkout repository --------------------------------------------------------------------
- uses: actions/checkout@v2
# Build LIBFDS RPM package ---------------------------------------------------------------
- name: Checkout libfds library - master branch
if: github.ref == 'refs/heads/master'
run: git clone --branch master https://github.com/CESNET/libfds.git build/libfds_repo
- name: Checkout libfds library - devel branch
if: github.ref != 'refs/heads/master'
run: git clone --branch devel https://github.com/CESNET/libfds.git build/libfds_repo
- name: Build RPMs of libfds library and install it
working-directory: 'build/libfds_repo'
run: |
mkdir build && cd build
cmake .. -DPACKAGE_BUILDER_RPM=On -DCPACK_PACKAGE_CONTACT="GitHub actions <[email protected]>"
make rpm
yum -y install pkg/rpm/rpmbuild/RPMS/*/libfds-*.rpm
# Build IPFIXcol2 RPM package ------------------------------------------------------------
- name: Build IPFIXcol2 RPMs and install them
run: |
cd build
cmake .. -DPACKAGE_BUILDER_RPM=On -DCPACK_PACKAGE_CONTACT="GitHub actions <[email protected]>"
make rpm
yum -y install pkg/rpm/rpmbuild/RPMS/*/ipfixcol2-*.rpm
- name: Try to run IPFIXcol2
run: |
ipfixcol2 -V
ipfixcol2 -h
ipfixcol2 -L -v
- name: Archive RPM packages
if: github.event_name == 'push'
uses: actions/upload-artifact@v2
with:
name: ${{ env.ZIP_FILE }}
path: |
build/pkg/rpm/rpmbuild/RPMS/
build/pkg/rpm/rpmbuild/SRPMS/