diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2017-06-04 13:56:04 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2017-06-04 14:36:13 +0200 |
commit | 35233f57c4b5c6b23c6ee245f08148818e11952c (patch) | |
tree | 63d1d58f1228ba4113f9562414a7855474bad8c5 /.gitlab-ci.yml | |
parent | 93bd6b8aa3bc4ed7f3e8673d3894eeddee7fbf7f (diff) | |
download | gnutls-35233f57c4b5c6b23c6ee245f08148818e11952c.tar.gz |
.gitlab-ci.yml: added aarch64 build based on Debiantmp-aarch64-ci
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
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 + |