mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-26 00:30:05 -04:00
Ensure BIND can be tested on FreeBSD in GitLab to more quickly catch build and test errors on that operating system. Make the relevant jobs optional until the CI environment supporting them is deemed stable enough for continuous use. FreeBSD jobs are run using the Custom executor feature of GitLab Runner. Unlike the Docker executor, the Custom executor does not support the "image" option and thus some way of informing the runner about the OS version to use for a given job is necessary. Arguably the simplest way of doing that without a lot of code duplication in .gitlab-ci.yml would be to use a YAML template with a "variables" block specifying the desired FreeBSD release to use, but including such a template in a job definition would cause issues in case other variables also needed to be set for that job (e.g. CFLAGS or EXTRA_CONFIGURE for build jobs). Thus, only one FreeBSD YAML template is defined instead and the Custom executor scripts on FreeBSD runners extract the OS version to use from the CI job name. This allows .gitlab-ci.yml variables to be defined for FreeBSD jobs in the same way as for Docker-based jobs.
745 lines
17 KiB
YAML
745 lines
17 KiB
YAML
variables:
|
|
# Not normally needed, but may be if some script uses `apt-get install`.
|
|
DEBIAN_FRONTEND: noninteractive
|
|
# Locale settings do not affect the build, but might affect tests.
|
|
LC_ALL: C
|
|
|
|
CI_REGISTRY_IMAGE: registry.gitlab.isc.org/isc-projects/images/bind9
|
|
CCACHE_DIR: "/ccache"
|
|
SOFTHSM2_CONF: "/var/tmp/softhsm2/softhsm2.conf"
|
|
|
|
# VirtualBox driver needs to set build_dir to "/builds" in gitlab-runner.toml
|
|
KYUA_RESULT: "$CI_PROJECT_DIR/kyua.results"
|
|
|
|
GIT_DEPTH: 1
|
|
BUILD_PARALLEL_JOBS: 6
|
|
TEST_PARALLEL_JOBS: 6
|
|
|
|
stages:
|
|
- precheck
|
|
- build
|
|
- unit
|
|
- system
|
|
- docs
|
|
- push
|
|
|
|
### Runner Tag Templates
|
|
|
|
# Note: FreeBSD runners extract the FreeBSD version to use from job name
|
|
|
|
.freebsd-amd64: &freebsd_amd64
|
|
tags:
|
|
- freebsd
|
|
- amd64
|
|
|
|
.linux-amd64: &linux_amd64
|
|
tags:
|
|
- linux
|
|
- amd64
|
|
|
|
.linux-i386: &linux_i386
|
|
tags:
|
|
- linux
|
|
- i386
|
|
|
|
### Docker Image Templates
|
|
|
|
# Alpine Linux
|
|
|
|
.alpine-3.10-amd64: &alpine_3_10_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:alpine-3.10-amd64"
|
|
<<: *linux_amd64
|
|
|
|
# CentOS
|
|
|
|
.centos-centos6-amd64: ¢os_centos6_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:centos-centos6-amd64"
|
|
<<: *linux_amd64
|
|
|
|
.centos-centos7-amd64: ¢os_centos7_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:centos-centos7-amd64"
|
|
<<: *linux_amd64
|
|
|
|
# Debian
|
|
|
|
.debian-jessie-amd64: &debian_jessie_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:debian-jessie-amd64"
|
|
<<: *linux_amd64
|
|
|
|
.debian-stretch-amd64: &debian_stretch_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:debian-stretch-amd64"
|
|
<<: *linux_amd64
|
|
|
|
.debian-stretch-i386: &debian_stretch_i386_image
|
|
image: "$CI_REGISTRY_IMAGE:debian-stretch-i386"
|
|
<<: *linux_i386
|
|
|
|
.debian-buster-amd64: &debian_buster_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:debian-buster-amd64"
|
|
<<: *linux_i386
|
|
|
|
.debian-sid-amd64: &debian_sid_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:debian-sid-amd64"
|
|
<<: *linux_amd64
|
|
|
|
.debian-sid-i386: &debian_sid_i386_image
|
|
image: "$CI_REGISTRY_IMAGE:debian-sid-i386"
|
|
<<: *linux_i386
|
|
|
|
# Fedora
|
|
|
|
.fedora-30-amd64: &fedora_30_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:fedora-30-amd64"
|
|
<<: *linux_amd64
|
|
|
|
# Ubuntu
|
|
|
|
.ubuntu-xenial-amd64: &ubuntu_xenial_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:ubuntu-xenial-amd64"
|
|
<<: *linux_amd64
|
|
|
|
.ubuntu-xenial-i386: &ubuntu_xenial_i386_image
|
|
image: "$CI_REGISTRY_IMAGE:ubuntu-xenial-i386"
|
|
<<: *linux_i386
|
|
|
|
.ubuntu-bionic-amd64: &ubuntu_bionic_amd64_image
|
|
image: "$CI_REGISTRY_IMAGE:ubuntu-bionic-amd64"
|
|
<<: *linux_amd64
|
|
|
|
.ubuntu-bionic-i386: &ubuntu_bionic_i386_image
|
|
image: "$CI_REGISTRY_IMAGE:ubuntu-bionic-i386"
|
|
<<: *linux_i386
|
|
|
|
### Job Templates
|
|
|
|
.default-triggering-rules: &default_triggering_rules
|
|
only:
|
|
- merge_requests
|
|
- tags
|
|
- web
|
|
|
|
.precheck: &precheck_job
|
|
<<: *default_triggering_rules
|
|
<<: *debian_sid_amd64_image
|
|
stage: precheck
|
|
|
|
.autoconf: &autoconf_job
|
|
<<: *default_triggering_rules
|
|
<<: *debian_sid_amd64_image
|
|
stage: precheck
|
|
script:
|
|
- autoreconf -fi
|
|
artifacts:
|
|
untracked: true
|
|
expire_in: "1 hour"
|
|
|
|
.configure: &configure |
|
|
./configure \
|
|
--disable-maintainer-mode \
|
|
--enable-developer \
|
|
--with-libtool \
|
|
--disable-static \
|
|
--with-cmocka \
|
|
--with-libxml2 \
|
|
--with-json-c \
|
|
--prefix=$HOME/.local \
|
|
--without-make-clean \
|
|
$EXTRA_CONFIGURE \
|
|
|| cat config.log
|
|
|
|
.build: &build_job
|
|
<<: *default_triggering_rules
|
|
stage: build
|
|
before_script:
|
|
- test -w "${CCACHE_DIR}" && export PATH="/usr/lib/ccache:${PATH}"
|
|
script:
|
|
- *configure
|
|
- make -j${BUILD_PARALLEL_JOBS:-1} -k all V=1
|
|
- test -z "${RUN_MAKE_INSTALL}" || make install
|
|
dependencies:
|
|
- autoreconf:sid:amd64
|
|
needs:
|
|
- autoreconf:sid:amd64
|
|
artifacts:
|
|
untracked: true
|
|
expire_in: "1 hour"
|
|
|
|
.setup_interfaces: &setup_interfaces |
|
|
if [ "$(id -u)" -eq "0" ]; then
|
|
sh -x bin/tests/system/ifconfig.sh up;
|
|
else
|
|
sudo sh -x bin/tests/system/ifconfig.sh up;
|
|
fi
|
|
|
|
.setup_softhsm: &setup_softhsm |
|
|
sh -x util/prepare-softhsm2.sh
|
|
|
|
.system_test: &system_test_job
|
|
<<: *default_triggering_rules
|
|
stage: system
|
|
retry: 2
|
|
before_script:
|
|
- *setup_interfaces
|
|
- *setup_softhsm
|
|
script:
|
|
- ( cd bin/tests && make -j${TEST_PARALLEL_JOBS:-1} -k test V=1 )
|
|
- test -s bin/tests/system/systests.output
|
|
artifacts:
|
|
untracked: true
|
|
expire_in: "1 week"
|
|
when: on_failure
|
|
|
|
.kyua_report: &kyua_report_html |
|
|
kyua --logfile /dev/null report-html \
|
|
--force \
|
|
--results-file "$KYUA_RESULT" \
|
|
--results-filter "" \
|
|
--output kyua_html
|
|
|
|
.unit_test: &unit_test_job
|
|
<<: *default_triggering_rules
|
|
stage: unit
|
|
before_script:
|
|
- *setup_softhsm
|
|
script:
|
|
- make unit
|
|
after_script:
|
|
- *kyua_report_html
|
|
artifacts:
|
|
paths:
|
|
- kyua.log
|
|
- kyua.results
|
|
- kyua_html/
|
|
expire_in: "1 week"
|
|
when: on_failure
|
|
|
|
### Job Definitions
|
|
|
|
# Jobs in the precheck stage
|
|
|
|
autoreconf:sid:amd64:
|
|
<<: *autoconf_job
|
|
|
|
misc:sid:amd64:
|
|
<<: *precheck_job
|
|
script:
|
|
- sh util/check-ans-prereq.sh
|
|
- sh util/checklibs.sh > checklibs.out
|
|
- sh util/tabify-changes < CHANGES > CHANGES.tmp
|
|
- diff -urNap CHANGES CHANGES.tmp
|
|
- rm CHANGES.tmp
|
|
- perl util/check-changes CHANGES
|
|
- perl -w util/merge_copyrights
|
|
- diff -urNap util/copyrights util/newcopyrights
|
|
- rm util/newcopyrights
|
|
- perl -w util/update_copyrights < util/copyrights
|
|
- if test "$(git status --porcelain | grep -Ev '\?\?' | wc -l)" -gt "0"; then git status --short; exit 1; fi
|
|
- xmllint --noout --nonet `git ls-files '*.xml' '*.docbook'`
|
|
- xmllint --noout --nonet --html `git ls-files '*.html'`
|
|
- sh util/check-win32util-configure
|
|
artifacts:
|
|
paths:
|
|
- util/newcopyrights
|
|
- checklibs.out
|
|
expire_in: "1 week"
|
|
when: on_failure
|
|
|
|
🐞:sid:amd64:
|
|
<<: *precheck_job
|
|
script:
|
|
- util/check-cocci
|
|
- if test "$(git status --porcelain | grep -Ev '\?\?' | wc -l)" -gt "0"; then git status --short; exit 1; fi
|
|
|
|
# Jobs for doc builds on Debian Sid (amd64)
|
|
|
|
docs:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
stage: docs
|
|
script:
|
|
- ./configure || cat config.log
|
|
- make -C doc/misc docbook
|
|
- make -C doc/arm Bv9ARM.html
|
|
dependencies:
|
|
- autoreconf:sid:amd64
|
|
needs:
|
|
- autoreconf:sid:amd64
|
|
artifacts:
|
|
paths:
|
|
- doc/arm/
|
|
expire_in: "1 month"
|
|
only:
|
|
- merge_requests
|
|
- tags
|
|
- web
|
|
- master@isc-projects/bind9
|
|
- /^v9_[1-9][0-9]$/@isc-projects/bind9
|
|
|
|
push:docs:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
stage: push
|
|
dependencies: []
|
|
script:
|
|
- curl -X POST -F token=$GITLAB_PAGES_DOCS_TRIGGER_TOKEN -F ref=master $GITLAB_PAGES_DOCS_TRIGGER_URL
|
|
only:
|
|
- master@isc-projects/bind9
|
|
- /^v9_[1-9][0-9]$/@isc-projects/bind9
|
|
|
|
# Jobs for regular GCC builds on Alpine Linux 3.10 (amd64)
|
|
|
|
gcc:alpine3.10:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--enable-dnstap"
|
|
<<: *alpine_3_10_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:alpine3.10:amd64:
|
|
<<: *alpine_3_10_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:alpine3.10:amd64
|
|
needs: ["gcc:alpine3.10:amd64"]
|
|
|
|
unit:gcc:alpine3.10:amd64:
|
|
<<: *alpine_3_10_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:alpine3.10:amd64
|
|
needs: ["gcc:alpine3.10:amd64"]
|
|
|
|
# Jobs for regular GCC builds on CentOS 6 (amd64)
|
|
|
|
gcc:centos6:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--with-libidn2 --disable-warn-error"
|
|
<<: *centos_centos6_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:centos6:amd64:
|
|
<<: *centos_centos6_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:centos6:amd64
|
|
needs: ["gcc:centos6:amd64"]
|
|
|
|
unit:gcc:centos6:amd64:
|
|
<<: *centos_centos6_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:centos6:amd64
|
|
needs: ["gcc:centos6:amd64"]
|
|
|
|
# Jobs for regular GCC builds on CentOS 7 (amd64)
|
|
|
|
gcc:centos7:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--enable-dnstap --with-libidn2"
|
|
<<: *centos_centos7_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:centos7:amd64:
|
|
<<: *centos_centos7_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:centos7:amd64
|
|
needs: ["gcc:centos7:amd64"]
|
|
|
|
unit:gcc:centos7:amd64:
|
|
<<: *centos_centos7_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:centos7:amd64
|
|
needs: ["gcc:centos7:amd64"]
|
|
|
|
# Jobs for regular GCC builds on Debian 8 Jessie (amd64)
|
|
|
|
gcc:jessie:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--without-cmocka --with-python --disable-geoip"
|
|
<<: *debian_jessie_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:jessie:amd64:
|
|
<<: *debian_jessie_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:jessie:amd64
|
|
needs: ["gcc:jessie:amd64"]
|
|
|
|
unit:gcc:jessie:amd64:
|
|
<<: *debian_jessie_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:jessie:amd64
|
|
needs: ["gcc:jessie:amd64"]
|
|
|
|
# Jobs for regular GCC builds on Debian 9 Stretch (amd64)
|
|
|
|
gcc:stretch:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
<<: *debian_stretch_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:stretch:amd64:
|
|
<<: *debian_stretch_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:stretch:amd64
|
|
needs: ["gcc:stretch:amd64"]
|
|
|
|
unit:gcc:stretch:amd64:
|
|
<<: *debian_stretch_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:stretch:amd64
|
|
needs: ["gcc:stretch:amd64"]
|
|
|
|
# Jobs for regular GCC builds on Debian 10 Buster (amd64)
|
|
|
|
gcc:buster:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
<<: *debian_buster_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:buster:amd64:
|
|
<<: *debian_buster_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:buster:amd64
|
|
needs: ["gcc:buster:amd64"]
|
|
|
|
unit:gcc:buster:amd64:
|
|
<<: *debian_buster_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:buster:amd64
|
|
needs: ["gcc:buster:amd64"]
|
|
|
|
# Jobs for regular GCC builds on Debian Sid (amd64)
|
|
|
|
gcc:sid:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O3 -g"
|
|
EXTRA_CONFIGURE: "--enable-dnstap --with-libidn2"
|
|
RUN_MAKE_INSTALL: 1
|
|
<<: *debian_sid_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:sid:amd64
|
|
needs: ["gcc:sid:amd64"]
|
|
|
|
unit:gcc:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:sid:amd64
|
|
needs: ["gcc:sid:amd64"]
|
|
|
|
# Jobs for regular GCC builds on Debian Sid (i386)
|
|
|
|
gcc:sid:i386:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O3 -g"
|
|
EXTRA_CONFIGURE: "--enable-dnstap --with-libidn2 --without-python"
|
|
<<: *debian_sid_i386_image
|
|
<<: *build_job
|
|
|
|
system:gcc:sid:i386:
|
|
<<: *debian_sid_i386_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:sid:i386
|
|
needs: ["gcc:sid:i386"]
|
|
|
|
unit:gcc:sid:i386:
|
|
<<: *debian_sid_i386_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:sid:i386
|
|
needs: ["gcc:sid:i386"]
|
|
|
|
# Jobs for regular GCC builds on Fedora 30 (amd64)
|
|
|
|
gcc:fedora30:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--with-libidn2"
|
|
<<: *fedora_30_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:fedora30:amd64:
|
|
<<: *fedora_30_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:fedora30:amd64
|
|
needs: ["gcc:fedora30:amd64"]
|
|
|
|
unit:gcc:fedora30:amd64:
|
|
<<: *fedora_30_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:fedora30:amd64
|
|
needs: ["gcc:fedora30:amd64"]
|
|
|
|
# Jobs for regular GCC builds on Ubuntu 16.04 Xenial Xerus (amd64)
|
|
|
|
gcc:xenial:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--disable-geoip"
|
|
<<: *ubuntu_xenial_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:xenial:amd64:
|
|
<<: *ubuntu_xenial_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:xenial:amd64
|
|
needs: ["gcc:xenial:amd64"]
|
|
|
|
unit:gcc:xenial:amd64:
|
|
<<: *ubuntu_xenial_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:xenial:amd64
|
|
needs: ["gcc:xenial:amd64"]
|
|
|
|
# Jobs for regular GCC builds on Ubuntu 18.04 Bionic Beaver (amd64)
|
|
|
|
gcc:bionic:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--with-libidn2"
|
|
<<: *ubuntu_bionic_amd64_image
|
|
<<: *build_job
|
|
|
|
system:gcc:bionic:amd64:
|
|
<<: *ubuntu_bionic_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- gcc:bionic:amd64
|
|
needs: ["gcc:bionic:amd64"]
|
|
|
|
unit:gcc:bionic:amd64:
|
|
<<: *ubuntu_bionic_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- gcc:bionic:amd64
|
|
needs: ["gcc:bionic:amd64"]
|
|
|
|
# Jobs for GCC builds with ASAN enabled on Debian Sid (amd64)
|
|
|
|
asan:sid:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g -fsanitize=address,undefined -DISC_MEM_USE_INTERNAL_MALLOC=0"
|
|
LDFLAGS: "-fsanitize=address,undefined"
|
|
EXTRA_CONFIGURE: "--with-libidn2"
|
|
<<: *debian_sid_amd64_image
|
|
<<: *build_job
|
|
|
|
system:asan:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- asan:sid:amd64
|
|
needs: ["asan:sid:amd64"]
|
|
|
|
unit:asan:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- asan:sid:amd64
|
|
needs: ["asan:sid:amd64"]
|
|
|
|
rwlock:sid:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g -DISC_MEM_USE_INTERNAL_MALLOC=0"
|
|
EXTRA_CONFIGURE: "--with-libidn2 --enable-pthread-rwlock"
|
|
<<: *debian_sid_amd64_image
|
|
<<: *build_job
|
|
|
|
system:rwlock:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- rwlock:sid:amd64
|
|
needs: ["rwlock:sid:amd64"]
|
|
|
|
unit:rwlock:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- rwlock:sid:amd64
|
|
needs: ["rwlock:sid:amd64"]
|
|
|
|
# Jobs for mutex-based atomics on Debian SID (amd64)
|
|
mutexatomics:sid:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g -DISC_MEM_USE_INTERNAL_MALLOC=0"
|
|
EXTRA_CONFIGURE: "--with-libidn2 --enable-mutex-atomics"
|
|
<<: *debian_sid_amd64_image
|
|
<<: *build_job
|
|
|
|
#system:mutexatomics:sid:amd64:
|
|
# <<: *debian_sid_amd64_image
|
|
# <<: *system_test_job
|
|
# dependencies:
|
|
# - mutexatomics:sid:amd64
|
|
# - mutexatomics:sid:amd64
|
|
# allow_failure: true
|
|
|
|
#unit:mutexatomics:sid:amd64:
|
|
# <<: *debian_sid_amd64_image
|
|
# <<: *unit_test_job
|
|
# dependencies:
|
|
# - mutexatomics:sid:amd64
|
|
# allow_failure: true
|
|
|
|
# Jobs for Clang builds on Debian Stretch (amd64)
|
|
|
|
clang:stretch:amd64:
|
|
variables:
|
|
CC: clang
|
|
CFLAGS: "-Wall -Wextra -Wenum-conversion -O2 -g"
|
|
EXTRA_CONFIGURE: "--with-python=python3"
|
|
<<: *debian_stretch_amd64_image
|
|
<<: *build_job
|
|
|
|
unit:clang:stretch:amd64:
|
|
<<: *debian_stretch_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- clang:stretch:amd64
|
|
needs: ["clang:stretch:amd64"]
|
|
|
|
# Jobs for Clang builds on Debian Stretch (i386)
|
|
|
|
clang:stretch:i386:
|
|
variables:
|
|
CC: clang
|
|
CFLAGS: "-Wall -Wextra -Wenum-conversion -O2 -g"
|
|
EXTRA_CONFIGURE: "--with-python=python2"
|
|
<<: *debian_stretch_i386_image
|
|
<<: *build_job
|
|
|
|
# Jobs for PKCS#11-enabled GCC builds on Debian Sid (amd64)
|
|
|
|
pkcs11:sid:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--enable-native-pkcs11 --with-pkcs11=/usr/lib/softhsm/libsofthsm2.so"
|
|
<<: *debian_sid_amd64_image
|
|
<<: *build_job
|
|
|
|
system:pkcs11:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- pkcs11:sid:amd64
|
|
needs: ["pkcs11:sid:amd64"]
|
|
|
|
unit:pkcs11:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- pkcs11:sid:amd64
|
|
needs: ["pkcs11:sid:amd64"]
|
|
|
|
# Jobs for Clang builds on FreeBSD 11.3 (amd64)
|
|
|
|
clang:freebsd11.3:amd64:
|
|
variables:
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
<<: *freebsd_amd64
|
|
<<: *build_job
|
|
when: manual
|
|
|
|
system:clang:freebsd11.3:amd64:
|
|
<<: *freebsd_amd64
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- clang:freebsd11.3:amd64
|
|
needs: ["clang:freebsd11.3:amd64"]
|
|
when: manual
|
|
|
|
unit:clang:freebsd11.3:amd64:
|
|
<<: *freebsd_amd64
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- clang:freebsd11.3:amd64
|
|
needs: ["clang:freebsd11.3:amd64"]
|
|
when: manual
|
|
|
|
# Jobs for Clang builds on FreeBSD 12.0 (amd64)
|
|
|
|
clang:freebsd12.0:amd64:
|
|
variables:
|
|
CFLAGS: "-Wall -Wextra -O2 -g"
|
|
EXTRA_CONFIGURE: "--enable-dnstap"
|
|
<<: *freebsd_amd64
|
|
<<: *build_job
|
|
when: manual
|
|
|
|
system:clang:freebsd12.0:amd64:
|
|
<<: *freebsd_amd64
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- clang:freebsd12.0:amd64
|
|
needs: ["clang:freebsd12.0:amd64"]
|
|
when: manual
|
|
|
|
unit:clang:freebsd12.0:amd64:
|
|
<<: *freebsd_amd64
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- clang:freebsd12.0:amd64
|
|
needs: ["clang:freebsd12.0:amd64"]
|
|
when: manual
|
|
|
|
# Jobs with libtool disabled
|
|
|
|
nolibtool:sid:amd64:
|
|
variables:
|
|
CC: gcc
|
|
CFLAGS: "-Wall -Wextra -Og -g"
|
|
EXTRA_CONFIGURE: "--with-libidn2 --without-libtool --with-dlopen"
|
|
<<: *debian_sid_amd64_image
|
|
<<: *build_job
|
|
|
|
system:nolibtool:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *system_test_job
|
|
dependencies:
|
|
- nolibtool:sid:amd64
|
|
needs: ["nolibtool:sid:amd64"]
|
|
|
|
unit:nolibtool:sid:amd64:
|
|
<<: *debian_sid_amd64_image
|
|
<<: *unit_test_job
|
|
dependencies:
|
|
- nolibtool:sid:amd64
|
|
needs: ["nolibtool:sid:amd64"]
|