mirror of https://github.com/xemu-project/xemu.git
ci: Add release builds to Appveyor
This commit is contained in:
parent
02f3b701d0
commit
e582e64fd6
|
@ -17,7 +17,6 @@ bash -xlc "pacman --noconfirm -S --needed base-devel"
|
||||||
|
|
||||||
rem Install the relevant native dependencies
|
rem Install the relevant native dependencies
|
||||||
bash -xlc "pacman --noconfirm -S --needed git"
|
bash -xlc "pacman --noconfirm -S --needed git"
|
||||||
bash -xlc "pacman --noconfirm -S --needed python2"
|
|
||||||
bash -xlc "pacman --noconfirm -S --needed make"
|
bash -xlc "pacman --noconfirm -S --needed make"
|
||||||
bash -xlc "pacman --noconfirm -S --needed autoconf"
|
bash -xlc "pacman --noconfirm -S --needed autoconf"
|
||||||
bash -xlc "pacman --noconfirm -S --needed automake-wrapper"
|
bash -xlc "pacman --noconfirm -S --needed automake-wrapper"
|
||||||
|
@ -35,4 +34,10 @@ set CHERE_INVOKING=yes
|
||||||
rem Build/test scripting
|
rem Build/test scripting
|
||||||
bash -xlc "set pwd"
|
bash -xlc "set pwd"
|
||||||
bash -xlc "env"
|
bash -xlc "env"
|
||||||
bash -xlc "./build.sh"
|
|
||||||
|
IF "%1%" == "Release" (
|
||||||
|
bash -xlc "./build.sh --release"
|
||||||
|
) ELSE (
|
||||||
|
bash -xlc "./build.sh"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,13 @@ environment:
|
||||||
matrix:
|
matrix:
|
||||||
- MSYS2_ARCH: x86_64
|
- MSYS2_ARCH: x86_64
|
||||||
MSYSTEM: MINGW64
|
MSYSTEM: MINGW64
|
||||||
# - MSYS2_ARCH: i686
|
|
||||||
# MSYSTEM: MINGW32
|
configuration:
|
||||||
|
- Release
|
||||||
|
- Debug
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- '%APPVEYOR_BUILD_FOLDER%\appveyor.bat'
|
- '%APPVEYOR_BUILD_FOLDER%\appveyor.bat %CONFIGURATION%'
|
||||||
|
|
||||||
deploy: off
|
deploy: off
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue