From 3520dbd6e18f469b94f679eb51b5a47df6a8b9b7 Mon Sep 17 00:00:00 2001 From: Kevin O'Brien Date: Sun, 20 Sep 2020 09:12:49 -0400 Subject: [PATCH] temporarily allow ppc64le build to fail (#307) * temporarily allow ppc64le build to fail There is some problem with the Travis server for ppc64le, so until it gets fixed, we should allow ppc64le builds to fail * sign commit Signed-off-by: Kevin O'Brien Co-authored-by: Tian Jin --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2d2166e..1f11046 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,9 +50,12 @@ script: - docker exec build compile-onnx-mlir.sh - docker exec build test-onnx-mlir.sh - docker commit build onnxmlirczar/onnx-mlir-build:$CPU_ARCH + jobs: + fast_finish: true allow_failures: - env: NIGHTLY=true + - arch: ppc64le include: ########################################################################################## # @@ -191,7 +194,6 @@ jobs: - docker build -t onnxmlirczar/onnx-mlir-llvmimage:x86 -f docker/prereq.amd64.Dockerfile --build-arg BASE_IMAGE="onnxmlirczar/onnx-mlir-llvmimage-partial:x86" ./utils - docker login -u onnxmlirczar -p "$DOCKER_HUB_TOKEN" - docker push onnxmlirczar/onnx-mlir-llvmimage:x86 - after_success: - if [ $TRAVIS_PULL_REQUEST == false ] && [ $TRAVIS_BRANCH == "master" ] && [ $NIGHTLY == false ]; then echo "Pushing new build to docker hub";