-
Notifications
You must be signed in to change notification settings - Fork 95
270 lines (227 loc) · 9.22 KB
/
ci_build.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
name: CI build
on:
workflow_dispatch: # run manually https://docs.github.com/en/actions/using-workflows/manually-running-a-workflow
push:
branches: [ "master" ] # run for these branches
pull_request:
branches: [ "master" ] # run for pull requests that target these branches
env:
BUILD_TYPE: RelWithDebInfo # CMake build type (Release, Debug, RelWithDebInfo, etc.)
jobs:
# ----------------------------------------------------------------------------------------------
linux-amd64:
name: Linux (amd64/x86_64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies with APT (libelf, libpcap)
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libelf-dev libpcap0.8-dev
version: linux-amd64
- name: Configure with CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DDYNAMIPS_CODE=both -DBUILD_UDP_RECV=ON -DBUILD_UDP_SEND=ON -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install -DCPACK_PACKAGE_FILE_NAME=dynamips-package -DCPACK_GENERATOR=ZIP
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
run: |
set -x
cd ${{github.workspace}}/build
ctest --verbose --build-config ${{env.BUILD_TYPE}}
./stable/dynamips -e
./unstable/dynamips_amd64_unstable -e
- name: Install
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install
- name: Package
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target package
- name: Upload success
if: ${{ success() }}
uses: actions/upload-artifact@v4
with:
name: linux-amd64-success
path: |
${{github.workspace}}/build/install/
${{github.workspace}}/build/dynamips-package.zip
compression-level: 9 # maximum compression
- name: Upload failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: linux-amd64-failure
path: ${{github.workspace}}/build/
compression-level: 9 # maximum compression
# ----------------------------------------------------------------------------------------------
linux-x86:
name: Linux (x86)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup x86 chroot with Alpine Linux and install dependencies
uses: jirutka/setup-alpine@v1
with:
arch: x86
packages: >
build-base
linux-headers
elfutils-dev
libpcap-dev
cmake
- name: Configure with CMake
shell: alpine.sh {0}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DDYNAMIPS_CODE=both -DBUILD_UDP_RECV=ON -DBUILD_UDP_SEND=ON -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install -DCPACK_PACKAGE_FILE_NAME=dynamips-package -DCPACK_GENERATOR=ZIP
- name: Build
shell: alpine.sh {0}
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
shell: alpine.sh {0}
run: |
set -x
cd ${{github.workspace}}/build
ctest --verbose --build-config ${{env.BUILD_TYPE}}
./stable/dynamips -e
./unstable/dynamips_x86_unstable -e
- name: Install
shell: alpine.sh {0}
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install
- name: Package
shell: alpine.sh {0}
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target package
- name: Upload success
if: ${{ success() }}
uses: actions/upload-artifact@v4
with:
name: linux-x86-success
path: |
${{github.workspace}}/build/install/
${{github.workspace}}/build/dynamips-package.zip
compression-level: 9 # maximum compression
- name: Upload failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: linux-x86-failure
path: ${{github.workspace}}/build/
compression-level: 9 # maximum compression
# ----------------------------------------------------------------------------------------------
macos-amd64:
name: MacOS (amd64/x86_64)
runs-on: macos-13 # macos-13 is the last runner with an AMD64 cpu, macos-14 has an ARM cpu (Apple M1)
steps:
- uses: actions/checkout@v4
- name: Install dependencies with brew
uses: ConorMacBride/install-package@v1
with:
brew: libelf # libpcap is included in the SDK
- name: Configure with CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DDYNAMIPS_CODE=both -DBUILD_UDP_RECV=ON -DBUILD_UDP_SEND=ON -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install -DCPACK_PACKAGE_FILE_NAME=dynamips-package -DCPACK_GENERATOR=ZIP
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
run: |
set -x
cd ${{github.workspace}}/build
ctest --verbose --build-config ${{env.BUILD_TYPE}}
./stable/dynamips -e
./unstable/dynamips_amd64_unstable -e
- name: Install
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install
- name: Package
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target package
- name: Upload success
if: ${{ success() }}
uses: actions/upload-artifact@v4
with:
name: macos-amd64-success
path: |
${{github.workspace}}/build/install/
${{github.workspace}}/build/dynamips-package.zip
compression-level: 9 # maximum compression
- name: Upload failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: macos-amd64-failure
path: ${{github.workspace}}/build/
compression-level: 9 # maximum compression
# ----------------------------------------------------------------------------------------------
cygwin-amd64:
name: Cygwin (amd64/x86_64)
runs-on: windows-latest
env:
CYGWIN_NOWINPATH: 1 # isolate cygwin from windows
defaults:
run:
shell: C:\cygwin\bin\bash.EXE --login -e -o pipefail -o igncr '{0}'
steps:
- name: Avoid '\r' problems
shell: cmd
run: git config --global core.autocrlf input
- uses: actions/checkout@v4
- name: Install dependencies with Cygwin
uses: cygwin/cygwin-install-action@master
with:
packages: git curl p7zip cmake make gcc-core # FIXME using the libelf-devel package gets you a "missing libintl_dgettext" error, how to fix?
platform: x86_64
add-to-path: false
- name: Adapt cygwin environment
run: |
set -x
# avoid git error "detected dubious ownership"
git config --global --add safe.directory '*'
# set the start directory
echo "cd '${{github.workspace}}'" >> ~/.bash_profile
- name: Install dependencies (libelf)
run: |
set -x
curl -O https://fossies.org/linux/misc/old/libelf-0.8.13.tar.gz
tar xvzf libelf-0.8.13.tar.gz
cd libelf-0.8.13
./configure --host x86_64-pc-cygwin
make
make install
- name: Install dependencies (winpcap SDK)
run: |
set -x
curl -O https://www.winpcap.org/install/bin/WpdPack_4_1_2.zip
7za x ./WpdPack_4_1_2.zip -o.
cp ./WpdPack/Lib/x64/Packet.lib /usr/local/lib/libpacket.a
cp ./WpdPack/Lib/x64/wpcap.lib /usr/local/lib/libwpcap.a
cp --verbose --force --recursive ./WpdPack/Include/* /usr/local/include/
- name: Install dependencies (win10pcap)
shell: cmd
run: |
echo on
curl -O "http://www.win10pcap.org/download/Win10Pcap-v10.2-5002.msi"
msiexec /i "Win10Pcap-v10.2-5002.msi" /qn /norestart /L*v "Win10Pcap-install.log"
type "Win10Pcap-install.log"
- name: Configure with CMake
run: cmake -B $(pwd)/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DDYNAMIPS_CODE=both -DBUILD_UDP_RECV=ON -DBUILD_UDP_SEND=ON -DCMAKE_INSTALL_PREFIX=$(pwd)/build/install -DCPACK_PACKAGE_FILE_NAME=dynamips-package -DCPACK_GENERATOR=ZIP
- name: Build
run: cmake --build $(pwd)/build --config ${{env.BUILD_TYPE}}
- name: Test
run: |
set -x
cd build
ctest --verbose --build-config ${{env.BUILD_TYPE}}
./stable/dynamips -e
./unstable/dynamips_amd64_unstable -e
- name: Install
run: cmake --build $(pwd)/build --config ${{env.BUILD_TYPE}} --target install
- name: Package
run: cmake --build $(pwd)/build --config ${{env.BUILD_TYPE}} --target package
- name: Upload success
if: ${{ success() }}
uses: actions/upload-artifact@v4
with:
name: cygwin-amd64-success
path: |
${{github.workspace}}/build/install/
${{github.workspace}}/build/dynamips-package.zip
compression-level: 9 # maximum compression
- name: Upload failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: cygwin-amd64-failure
path: ${{github.workspace}}/build/
compression-level: 9 # maximum compression