gsplus/appveyor.yml

91 lines
2.6 KiB
YAML
Raw Normal View History

version: 1.0.{build}
image: Visual Studio 2017
environment:
matrix:
2019-03-01 15:03:56 +00:00
- TYPE: mingw32-gdi
MSYSTEM: MINGW32
MSYSTEM_PREFIX: /mingw32
PATH: C:\msys64\mingw32\bin;C:\msys64\usr\bin;C:\Windows\System32;C:\Windows;%PATH%
2019-03-01 15:03:56 +00:00
- TYPE: mingw64-gdi
MSYSTEM: MINGW64
MSYSTEM_PREFIX: /mingw64
PATH: C:\msys64\mingw64\bin;C:\msys64\usr\bin;C:\Windows\System32;C:\Windows;%PATH%
2019-03-01 15:03:56 +00:00
- TYPE: msys-gdi
MSYSTEM: MSYS
MSYSTEM_PREFIX: /usr/
PATH: C:\msys64\bin;C:\msys64\usr\bin;C:\Windows\System32;C:\Windows;%PATH%
2019-03-01 15:03:56 +00:00
- TYPE: mingw32-sdl
MSYSTEM_PREFIX: /mingw32
PATH: C:\msys64\mingw32\bin;C:\msys64\usr\bin;C:\Windows\System32;C:\Windows;%PATH%
for:
2019-03-01 15:30:57 +00:00
- # mingw64/gdi
matrix:
only:
- image: Visual Studio 2017
2019-03-01 15:43:25 +00:00
TYPE: mingw64-gdi
install:
- cmd: pacman --noconfirm -Sy
- cmd: pacman --noconfirm -S re2c mingw-w64-x86_64-cmake
build_script:
- cmd: mkdir build
- cmd: cd build
- cmd: cmake ../ -DDRIVER=WIN32 -DWITH_DEBUGGER=OFF -G "MSYS Makefiles"
- cmd: make VERBOSE=1 GSplus
artifacts:
- path: 'build\bin\GSplus.exe'
name: GSplus-64-gdi
2019-03-01 15:30:57 +00:00
- # mingw32/gdi
matrix:
only:
- image: Visual Studio 2017
2019-03-01 15:43:25 +00:00
TYPE: mingw32-gdi
2019-03-01 15:30:57 +00:00
install:
- cmd: pacman --noconfirm -Sy
- cmd: pacman --noconfirm -S re2c mingw-w64-i686-cmake
build_script:
- cmd: mkdir build
- cmd: cd build
- cmd: cmake ../ -DDRIVER=WIN32 -DWITH_DEBUGGER=OFF -G "MSYS Makefiles"
- cmd: make VERBOSE=1 GSplus
artifacts:
- path: 'build\bin\GSplus.exe'
name: GSplus-32-gdi
- # mingw32/sdl
matrix:
only:
- image: Visual Studio 2017
TYPE: mingw32-sdl
install:
- cmd: pacman --noconfirm -Sy
- cmd: pacman --noconfirm -S re2c mingw-w64-i686-cmake mingw-w64-i686-SDL2 mingw-w64-i686-SDL2_image mingw-w64-i686-freetype
build_script:
- cmd: mkdir build
- cmd: cd build
- cmd: cmake ../ -DDRIVER=SDL2 -DWITH_DEBUGGER=OFF -G "MSYS Makefiles"
- cmd: make VERBOSE=1 GSplus
artifacts:
- path: 'build\bin\GSplus.exe'
name: GSplus-32-sdl
2019-03-01 15:43:25 +00:00
- # msys2/gdi
matrix:
only:
- image: Visual Studio 2017
TYPE: msys-gdi
install:
- cmd: pacman --noconfirm -Sy
- cmd: pacman --noconfirm -S re2c
build_script:
- cmd: mkdir build
- cmd: cd build
- cmd: cmake ../ -DDRIVER=WIN32 -DWITH_DEBUGGER=OFF -G "Unix Makefiles"
- cmd: make VERBOSE=1 GSplus
artifacts:
- path: 'build\bin\GSplus.exe'
name: GSplus-cygwin-32-gdi