summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 43f517cb044fbfe29d21595508b42f042b1cbc99 (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
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
variables:
  DEBIAN_FRONTEND: noninteractive
  LC_ALL: C.UTF-8
  GIT_STRATEGY: fetch
  DOCKER_CMD: docker --config="$HOME/.docker/$CI_JOB_ID/"
  IMG_BASE: registry.nic.cz/labs/bird
  TOOLS_DIR: /home/gitlab-runner/bird-tools
  STAYRTR_BINARY: /usr/bin/stayrtr

stages:
#  - image
  - build
  - pkg
  - test

.docker: &docker_build
  stage: image
  allow_failure: true
  script:
  - $DOCKER_CMD login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.nic.cz
  # Make sure we refresh the base image if it updates (eg. security updates, etc)
  # If we do just the build, cache is always reused and the freshness of the
  # base image is never checked. However, pull always asks and updates the
  # image only if it changed ‒ therefore, the cache is used unless there's a
  # change.
  - $DOCKER_CMD pull `sed -ne 's/^FROM //p' "misc/docker/$IMG_NAME/Dockerfile"`
  - $DOCKER_CMD build -t "bird:$IMG_NAME" "misc/docker/$IMG_NAME"
  - $DOCKER_CMD tag "bird:$IMG_NAME" "$IMG_BASE:$IMG_NAME"
  - $DOCKER_CMD push "$IMG_BASE:$IMG_NAME"
  after_script:
  - rm -f "$HOME/.docker/$CI_JOB_ID/" # cleanup the credentials
  tags:
  # That's Docker in Docker
  - dind

# Docker build example
#docker_debian-11-amd64:
#  variables:
#    IMG_NAME: "debian-11-amd64"
#  <<: *docker_build


.build: &build-base
  stage: build
  script:
  - autoreconf
  - ./configure CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS"
  # Detect which make is available
  - MAKE=make
  - which gmake 2>/dev/null >/dev/null && MAKE=gmake
  - $MAKE
  - $MAKE check
  # Build docs when tools are available
  - if which linuxdoc pdflatex >/dev/null ; then $MAKE docs ; fi

.build-linux: &build-linux
  <<: *build-base
  tags:
    - docker
    - linux
    - amd64

build-debian-9-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:debian-9-amd64

build-debian-9-i386:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:debian-9-i386

build-debian-10-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:debian-10-amd64

build-debian-10-i386:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:debian-10-i386

build-debian-11-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:debian-11-amd64

#build-debian-11-i386:
#  <<: *build-linux
#  image: registry.nic.cz/labs/bird:debian-11-i386

build-debian-testing-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:debian-testing-amd64

#build-debian-testing-i386:
#  <<: *build-linux
#  image: registry.nic.cz/labs/bird:debian-testing-i386

build-fedora-25-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-25-amd64

build-fedora-26-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-26-amd64

build-fedora-27-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-27-amd64

build-fedora-28-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-28-amd64

build-fedora-29-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-29-amd64

build-fedora-30-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-30-amd64

build-fedora-31-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-31-amd64

build-fedora-32-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-32-amd64

build-fedora-33-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-33-amd64

build-fedora-34-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:fedora-33-amd64

#build-centos-7-amd64:
#  <<: *build-linux
#  image: registry.nic.cz/labs/bird:centos-7-amd64

build-centos-8-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:centos-8-amd64

build-ubuntu-16_04-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:ubuntu-16.04-amd64

build-ubuntu-18_04-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:ubuntu-18.04-amd64

build-ubuntu-20_04-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:ubuntu-20.04-amd64

build-ubuntu-21_10-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:ubuntu-21.10-amd64

#build-ubuntu-21_04-amd64:
#  <<: *build-linux
#  image: registry.nic.cz/labs/bird:ubuntu-21.04-amd64

build-opensuse-15.0-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:opensuse-15.0-amd64

build-opensuse-15.1-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:opensuse-15.1-amd64

build-opensuse-15.2-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:opensuse-15.2-amd64

build-opensuse-15.3-amd64:
  <<: *build-linux
  image: registry.nic.cz/labs/bird:opensuse-15.3-amd64

#build-freebsd-11-amd64:
#  <<: *build-base
#  tags:
#    - freebsd
#    - amd64

#build-freebsd-11-i386:
#  <<: *build-base
#  tags:
#    - freebsd
#    - i386


.pkg-deb: &pkg-deb
  stage: pkg
  script:
    - pip3 install apkg
    - apkg build
    #- apkg install -y pkg/pkgs/*/*/*.deb
  artifacts:
    paths:
      - pkg/pkgs/*

.pkg-rpm: &pkg-rpm
  stage: pkg
  script:
    - pip3 install apkg
    - apkg build
    #- apkg install -y pkg/pkgs/*/*/*.rpm
  artifacts:
    paths:
      - pkg/pkgs/*

.pkg-rpm-wa: &pkg-rpm-wa
  stage: pkg
  script:
    - sed -i "s/runstatedir/with-runtimedir/" distro/pkg/rpm/bird.spec
    - pip3 install apkg
    - apkg build
    #- apkg install -y pkg/pkgs/*/*/*.rpm
  artifacts:
    paths:
      - pkg/pkgs/*

pkg-debian-10-amd64:
  <<: *pkg-deb
  needs: [build-debian-10-amd64]
  image: registry.nic.cz/labs/bird:debian-10-amd64

pkg-debian-10-i386:
  <<: *pkg-deb
  needs: [build-debian-10-i386]
  image: registry.nic.cz/labs/bird:debian-10-i386

pkg-debian-11-amd64:
  <<: *pkg-deb
  needs: [build-debian-11-amd64]
  image: registry.nic.cz/labs/bird:debian-11-amd64

pkg-fedora-30-amd64:
  <<: *pkg-rpm-wa
  needs: [build-fedora-30-amd64]
  image: registry.nic.cz/labs/bird:fedora-30-amd64

pkg-fedora-31-amd64:
  <<: *pkg-rpm-wa
  needs: [build-fedora-31-amd64]
  image: registry.nic.cz/labs/bird:fedora-31-amd64

pkg-fedora-32-amd64:
  <<: *pkg-rpm-wa
  needs: [build-fedora-32-amd64]
  image: registry.nic.cz/labs/bird:fedora-32-amd64

pkg-fedora-33-amd64:
  <<: *pkg-rpm-wa
  needs: [build-fedora-33-amd64]
  image: registry.nic.cz/labs/bird:fedora-33-amd64

pkg-fedora-34-amd64:
  <<: *pkg-rpm
  needs: [build-fedora-34-amd64]
  image: registry.nic.cz/labs/bird:fedora-34-amd64

#pkg-centos-7-amd64:
#  <<: *pkg-rpm-wa
#  variables:
#    LC_ALL: en_US.UTF-8
#  needs: [build-centos-7-amd64]
#  image: registry.nic.cz/labs/bird:centos-7-amd64

pkg-centos-8-amd64:
  <<: *pkg-rpm-wa
  needs: [build-centos-8-amd64]
  image: registry.nic.cz/labs/bird:centos-8-amd64

pkg-ubuntu-18.04-amd64:
  <<: *pkg-deb
  needs: [build-ubuntu-18_04-amd64]
  image: registry.nic.cz/labs/bird:ubuntu-18.04-amd64

pkg-ubuntu-20.04-amd64:
  <<: *pkg-deb
  needs: [build-ubuntu-20_04-amd64]
  image: registry.nic.cz/labs/bird:ubuntu-20.04-amd64


pkg-ubuntu-21.10-amd64:
  <<: *pkg-deb
  needs: [build-ubuntu-21_10-amd64]
  image: registry.nic.cz/labs/bird:ubuntu-21.10-amd64

#pkg-ubuntu-21.04-amd64:
#  <<: *pkg-deb
#  needs: [build-ubuntu-21_04-amd64]
#  image: registry.nic.cz/labs/bird:ubuntu-21.04-amd64

pkg-opensuse-15.1-amd64:
  <<: *pkg-rpm-wa
  needs: [build-opensuse-15.1-amd64]
  image: registry.nic.cz/labs/bird:opensuse-15.1-amd64

pkg-opensuse-15.2-amd64:
  <<: *pkg-rpm-wa
  needs: [build-opensuse-15.2-amd64]
  image: registry.nic.cz/labs/bird:opensuse-15.2-amd64

pkg-opensuse-15.3-amd64:
  <<: *pkg-rpm-wa
  needs: [build-opensuse-15.3-amd64]
  image: registry.nic.cz/labs/bird:opensuse-15.3-amd64


build-netlab:
  stage: build
  tags:
    - netlab
    - amd64
  script:
    - DIR=$(pwd)
    - autoreconf
    - ./configure
    - make
    - cd $TOOLS_DIR
    - sudo git clean -fx
    - git pull --ff-only
    - mv $DIR/bird $DIR/birdc netlab/common
    - ln -s $STAYRTR_BINARY netlab/common/stayrtr

.test: &test-base
  stage: test
  needs: [build-netlab]
  tags:
    - netlab
    - amd64
  script:
    - cd $TOOLS_DIR/netlab
    - sudo ./stop
    - sudo ./runtest -s v2 -m check $TEST_NAME

test-ospf-base:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-base

test-ospf-default:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-default

test-ospf-priority:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-priority

test-ospf-nbma:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-nbma

test-ospf-ptmp:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-ptmp

test-ospf-authentication:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-authentication

test-ospf-bfd:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-bfd

test-ospf-custom:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-custom

test-ospf-area:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-area

test-ospf-vrf:
  <<: *test-base
  variables:
    TEST_NAME: cf-ospf-vrf

test-bgp-base:
  <<: *test-base
  variables:
    TEST_NAME: cf-bgp-base

test-bgp-auth:
  <<: *test-base
  variables:
    TEST_NAME: cf-bgp-auth

test-bgp-int:
  <<: *test-base
  variables:
    TEST_NAME: cf-bgp-int

test-bgp-merged:
  <<: *test-base
  variables:
    TEST_NAME: cf-bgp-merged

test-bgp-flowspec:
  <<: *test-base
  variables:
    TEST_NAME: cf-bgp-flowspec

test-bgp-rs-multitab:
  <<: *test-base
  variables:
    TEST_NAME: cf-bgp-rs-multitab

test-ebgp-loop:
  <<: *test-base
  variables:
    TEST_NAME: cf-ebgp-loop

test-ebgp-star:
  <<: *test-base
  variables:
    TEST_NAME: cf-ebgp-star

test-ebgp-role:
  <<: *test-base
  variables:
    TEST_NAME: cf-ebgp-role

test-ebgp-graceful:
  <<: *test-base
  variables:
    TEST_NAME: cf-ebgp-graceful

test-ebgp-import-limit:
  <<: *test-base
  variables:
    TEST_NAME: cf-ebgp-import-limit

test-ibgp-loop:
  <<: *test-base
  variables:
    TEST_NAME: cf-ibgp-loop

test-ibgp-loop-big:
  <<: *test-base
  variables:
    TEST_NAME: cf-ibgp-loop-big

test-ibgp-flat:
  <<: *test-base
  variables:
    TEST_NAME: cf-ibgp-flat

test-babel-base:
  <<: *test-base
  variables:
    TEST_NAME: cf-babel-base

test-babel-auth:
  <<: *test-base
  variables:
    TEST_NAME: cf-babel-auth

test-rip-base:
  <<: *test-base
  variables:
    TEST_NAME: cf-rip-base

test-kernel-learn:
  <<: *test-base
  variables:
    TEST_NAME: cf-kernel-learn

test-mpls-bgp:
  <<: *test-base
  variables:
    TEST_NAME: cf-mpls-bgp

test-mpls-bgp-l3vpn:
  <<: *test-base
  variables:
    TEST_NAME: cf-mpls-bgp-l3vpn


.build-birdlab-base: &build-birdlab-base
  stage: build
  script:
    - autoreconf
    - ./configure
    - gmake
    - gmake check

build-birdlab-debian-11:
  <<: *build-birdlab-base
  tags:
    - birdlab-debian-11
    - amd64

build-birdlab-centos-08:
  <<: *build-birdlab-base
  tags:
    - birdlab-centos-08
    - amd64

build-birdlab-fedora-37:
  <<: *build-birdlab-base
  tags:
    - birdlab-fedora-37
    - amd64

build-birdlab-freebsd-13:
  <<: *build-birdlab-base
  tags:
    - birdlab-freebsd-13
    - amd64

build-birdlab-openbsd-71:
  <<: *build-birdlab-base
  variables:
     AUTOCONF_VERSION: "2.71"
  tags:
    - birdlab-openbsd-71
    - amd64