Take 2 mac build

This commit is contained in:
Matthew Budd 2020-06-30 20:42:16 -04:00
parent e8d3b9da46
commit bb312d8a55
2 changed files with 9 additions and 36 deletions

View File

@ -3,17 +3,7 @@ version: 1.0.{build}
environment: environment:
matrix: matrix:
- job_name: Windows 32 - job_name: MacOS
appveyor_build_worker_image: Visual Studio 2019
- job_name: Windows 64
appveyor_build_worker_image: Visual Studio 2019
- job_name: Ubuntu
appveyor_build_worker_image: Ubuntu2004
#appveyor_build_worker_image: Ubuntu1804
- job_name: macOS
appveyor_build_worker_image: macos appveyor_build_worker_image: macos
for: for:
@ -21,31 +11,7 @@ for:
- -
matrix: matrix:
only: only:
- job_name: Windows 32 - job_name: MacOS
build_script:
- cmd: pipelines/win32_build.bat
-
matrix:
only:
- job_name: Windows 64
build_script:
- cmd: pipelines/win64_build.bat
-
matrix:
only:
- job_name: Ubuntu
build_script:
- sh: ./pipelines/linux_build.sh
-
matrix:
only:
- job_name: macOS
build_script: build_script:
- sh: ./pipelines/macOS_build.sh - sh: ./pipelines/macOS_build.sh

7
pipelines/macOS_build.sh Normal file → Executable file
View File

@ -17,6 +17,13 @@ echo '****************************************'
brew install sdl2 brew install sdl2
brew install qt5 brew install qt5
brew install minizip
brew install zlib
mkdir build;
cd build;
/usr/local/Cellar/qt/5.15.0/bin/qmake ..
make
# Debug via ssh if necessary # Debug via ssh if necessary
if [ ! -z $APPVEYOR_SSH_BLOCK ]; then if [ ! -z $APPVEYOR_SSH_BLOCK ]; then