[CI] Upgrade to MacOS Mojave image (#6406)

This commit is contained in:
Philip Hyunsu Cho 2020-11-18 20:29:10 -08:00 committed by GitHub
parent 4d1d5d4010
commit c763b50dd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -22,15 +22,15 @@ jobs:
- docker - docker
- os: osx - os: osx
arch: amd64 arch: amd64
osx_image: xcode10.1 osx_image: xcode10.2
env: TASK=python_test env: TASK=python_test
- os: osx - os: osx
arch: amd64 arch: amd64
osx_image: xcode10.1 osx_image: xcode10.2
env: TASK=python_sdist_test env: TASK=python_sdist_test
- os: osx - os: osx
arch: amd64 arch: amd64
osx_image: xcode10.1 osx_image: xcode10.2
env: TASK=java_test env: TASK=java_test
- os: linux - os: linux
arch: s390x arch: s390x

View File

@ -44,7 +44,7 @@ if [ ${TASK} == "python_test" ]; then
cd ../python-package cd ../python-package
python setup.py bdist_wheel python setup.py bdist_wheel
cd .. cd ..
TAG=macosx_10_13_x86_64.macosx_10_14_x86_64.macosx_10_15_x86_64 TAG=macosx_10_14_x86_64.macosx_10_15_x86_64.macosx_11_0_x86_64
python tests/ci_build/rename_whl.py python-package/dist/*.whl ${TRAVIS_COMMIT} ${TAG} python tests/ci_build/rename_whl.py python-package/dist/*.whl ${TRAVIS_COMMIT} ${TAG}
fi fi