From fd3ee81bcf992838731de6b317400d7f8c19d902 Mon Sep 17 00:00:00 2001 From: Kevin O'Brien Date: Fri, 26 Jun 2020 11:43:32 -0400 Subject: [PATCH] fix wrong tag on docker image (#193) Was tagging the image with "latest", should be the CPU type --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3ee14b2..fb6c420 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ script: - echo "about to execute build inside docker" - docker exec build df -h - docker exec build compile-onnx-mlir.sh - - docker commit build onnxmlirczar/onnx-mlir-build:latest + - docker commit build onnxmlirczar/onnx-mlir-build:$TRAVIS_CPU_ARCH after_success: - if [ $TRAVIS_PULL_REQUEST == false ] && [ $TRAVIS_BRANCH == "master" ]; then echo "Pushing new build to docker hub";