diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index edc2a08f54..bb8549f720 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -429,7 +429,7 @@ ubsan-Werror/Fedora/x86_64: - tests/*/*.log - tests/suite/*/*.log -build/Debian/x86_64: +Debian/x86_64: stage: stage1-testing image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$DEBIAN_BUILD script: @@ -449,3 +449,27 @@ build/Debian/x86_64: - build/tests/*.log - build/tests/*/*.log - build/tests/suite/*/*.log + +Debian/aarch64: + stage: stage1-testing + image: + before_script: + - /bin/true + script: + - make autoreconf && mkdir -p build && cd build && + ../configure --disable-doc --disable-guile --disable-full-test-suite && + make -j$(nproc) && make check -j$(nproc) + tags: + - aarch64 + only: + - branches@gnutls/gnutls + except: + - tags + artifacts: + expire_in: 1 week + when: on_failure + paths: + - ./*.log + - tests/*.log + - tests/*/*.log + |