fix wrong tag on docker image (#193)

Was tagging the image with "latest", should be the CPU type
This commit is contained in:
Kevin O'Brien 2020-06-26 11:43:32 -04:00 committed by GitHub
parent 2e08b2112c
commit fd3ee81bcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ script:
- echo "about to execute build inside docker" - echo "about to execute build inside docker"
- docker exec build df -h - docker exec build df -h
- docker exec build compile-onnx-mlir.sh - 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: after_success:
- if [ $TRAVIS_PULL_REQUEST == false ] && [ $TRAVIS_BRANCH == "master" ]; then - if [ $TRAVIS_PULL_REQUEST == false ] && [ $TRAVIS_BRANCH == "master" ]; then
echo "Pushing new build to docker hub"; echo "Pushing new build to docker hub";