Travis: Fix 'No names found, cannot describe anything.' in OS X build

This commit is contained in:
Johann Bauer 2018-05-15 18:25:51 +02:00
parent 7c7aa5828b
commit 7a27d04415

View file

@ -18,7 +18,9 @@ jobs:
include: include:
- stage: binary builds - stage: binary builds
sudo: true sudo: true
python: 3.5 env:
- TARGET_OS=Windows
python: 3.6
install: install:
- sudo dpkg --add-architecture i386 - sudo dpkg --add-architecture i386
- wget -nc https://dl.winehq.org/wine-builds/Release.key - wget -nc https://dl.winehq.org/wine-builds/Release.key
@ -31,8 +33,11 @@ jobs:
after_success: true after_success: true
- os: osx - os: osx
language: c language: c
env:
- TARGET_OS=macOS
python: false python: false
install: true install:
- git fetch origin
script: ./contrib/build-osx/make_osx script: ./contrib/build-osx/make_osx
after_script: ls -lah dist && md5 dist/* after_script: ls -lah dist && md5 dist/*
after_success: true after_success: true