Take 2 mac build
This commit is contained in:
parent
e8d3b9da46
commit
bb312d8a55
38
appveyor.yml
38
appveyor.yml
|
@ -3,17 +3,7 @@ version: 1.0.{build}
|
|||
environment:
|
||||
matrix:
|
||||
|
||||
- job_name: Windows 32
|
||||
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
|
||||
- job_name: MacOS
|
||||
appveyor_build_worker_image: macos
|
||||
|
||||
for:
|
||||
|
@ -21,31 +11,7 @@ for:
|
|||
-
|
||||
matrix:
|
||||
only:
|
||||
- job_name: Windows 32
|
||||
|
||||
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
|
||||
- job_name: MacOS
|
||||
|
||||
build_script:
|
||||
- sh: ./pipelines/macOS_build.sh
|
||||
|
|
|
@ -17,6 +17,13 @@ echo '****************************************'
|
|||
|
||||
brew install sdl2
|
||||
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
|
||||
if [ ! -z $APPVEYOR_SSH_BLOCK ]; then
|
||||
|
|
Loading…
Reference in New Issue