diff options
author | Daniel Salzman <daniel.salzman@nic.cz> | 2020-05-31 10:27:42 +0200 |
---|---|---|
committer | Daniel Salzman <daniel.salzman@nic.cz> | 2020-05-31 10:42:20 +0200 |
commit | 591c7bd0f8fdc4eae40d50a0fbeef37524a5d940 (patch) | |
tree | a14e2a5b58db3c24d52d78cea558f0e9c0451d50 /.gitlab-ci.yml | |
parent | Merge branch 'xdp_gun_opts' into 'master' (diff) | |
download | knot-591c7bd0f8fdc4eae40d50a0fbeef37524a5d940.tar.xz knot-591c7bd0f8fdc4eae40d50a0fbeef37524a5d940.zip |
CI: enable XDP on build:debian:amd64 to fix libknot.symbols mismatch
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dde25ae7b..bab255021 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -126,7 +126,7 @@ docker:knot-dns:fedora: stage: build script: - autoreconf -fi - - ./configure --disable-fastparser || ( cat config.log && exit 1 ) + - ./configure --disable-fastparser $EXTRA_CONFIGURE || ( cat config.log && exit 1 ) - make -k all V=1 artifacts: untracked: true @@ -185,6 +185,8 @@ test:ubuntu:amd64: - build:ubuntu:amd64 build:debian:amd64: + variables: + EXTRA_CONFIGURE: --enable-xdp=yes <<: *debian_stable <<: *build_job except: # run on schedules as well, for debian:symbols tests |