wut/appveyor.yml

46 lines
1.3 KiB
YAML
Raw Normal View History

2017-06-02 14:20:19 +02:00
clone_depth: 10
version: 1.0.{build}
image: Visual Studio 2017
platform:
2018-05-23 00:08:13 +02:00
- x64
2017-06-02 14:20:19 +02:00
configuration:
- Release
2018-05-25 15:26:49 +02:00
# - appveyor DownloadFile https://downloads.devkitpro.org/msys-2.10.0.7z
# - 7z x msys-2.10.0.7z -oC:\msys2
# - C:\msys2\msys2\usr\bin\bash.exe --login -c exit
# - C:\msys2\msys2\usr\bin\pacman.exe -Syu --noconfirm
# - C:\msys2\msys2\usr\bin\pacman.exe -S devkitPPC --noconfirm --needed
# - set DEVKITPPC=C:\msys2\msys2\opt\devkitpro\devkitPPC
2018-05-25 13:22:39 +02:00
install:
- git submodule update --init --recursive
- appveyor DownloadFile https://kent.dl.sourceforge.net/project/gnuwin32/make/3.81/make-3.81-bin.zip
- 7z x make-3.81-bin.zip -oC:\make
- appveyor DownloadFile https://netix.dl.sourceforge.net/project/gnuwin32/make/3.81/make-3.81-dep.zip
- 7z x make-3.81-dep.zip -oC:\make
- set PATH=%PATH%;C:/make/bin
2018-05-25 15:26:49 +02:00
- appveyor DownloadFile https://netcologne.dl.sourceforge.net/project/devkitpro/devkitPPC/devkitPPC_r29-1/devkitPPC_r29-1-win32.exe
- 7z x devkitPPC_r29-1-win32.exe -oC:\ -y
- set DEVKITPPC=C:/devkitPPC
2018-05-25 13:22:39 +02:00
before_build:
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=install -G "Visual Studio 15 2017 Win64" ../
build_script:
- msbuild INSTALL.vcxproj /p:Configuration=Release /p:Platform=x64
after_build:
- cd install
- 7z a wut.zip .
artifacts:
- path: build\install\wut.zip
name: wut