From 49fecd9f474f7393e2ded00ff13396375bce3449 Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Thu, 7 May 2020 20:57:26 +0500 Subject: [PATCH] CI: travis-ci: enable arm64 builds again travis-ci arm64 were temporarily disabled due to travis instability. let us enable them in "allowed to fail" mode. --- .travis.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 345c08afe..0d7268791 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,13 +43,11 @@ matrix: if: type == push compiler: clang env: TARGET=linux-glibc OPENSSL_VERSION=1.1.1f CC=clang-9 -################## -## temporarily disabled, until arm64 runners become stable -# - os: linux -# arch: arm64 -# if: type == push -# compiler: clang -# env: TARGET=linux-glibc OPENSSL_VERSION=1.1.1f CC=clang-9 + - os: linux + arch: arm64 + if: type == push + compiler: clang + env: TARGET=linux-glibc OPENSSL_VERSION=1.1.1f CC=clang-9 - os: linux arch: s390x if: type == push @@ -101,6 +99,11 @@ matrix: before_script: - git clone http://git.1wt.eu/git/libslz.git/ - cd libslz && make && make PREFIX=${HOME}/opt install && cd .. + allow_failures: + - os: linux + arch: arm64 + if: type == push + compiler: clang install: - git clone https://github.com/VTest/VTest.git ../vtest