-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathappveyor.yml
33 lines (30 loc) · 1.06 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
install:
- git submodule update --init --recursive
- set PATH=C:\msys64\mingw32\bin;C:\msys64\usr\bin;%PATH%
- mingw32-make -v
- make -v
- uname
- set MSYS=winsymlinks:native
build_script:
- appveyor AddCompilationMessage "Building 3rd party libraries"
- mingw32-make 3rdparty API=win32
- appveyor AddCompilationMessage "Tests"
- mingw32-make -C src/ check API=win32
- curl -F '[email protected]' "https://ci.appveyor.com/api/testresults/junit/%APPVEYOR_JOB_ID%"
# - mingw32-make -C src/ print-.VARIABLES API=win32 V=1
- appveyor AddCompilationMessage "Building GrafX2"
- mingw32-make API=win32
- appveyor AddCompilationMessage "Building zip package"
- mingw32-make ziprelease API=win32
- appveyor AddCompilationMessage "Building win32 installer"
- mingw32-make win32installer API=win32
# - mingw32-make 3rdparty API=sdl2
# - mingw32-make API=sdl2
# - mingw32-make ziprelease API=sdl2
artifacts:
- path: '*.7z'
name: GrafX2 portable installation
- path: 'install\*.exe'
name: GrafX2 installer
on_failure:
- 'dir /S tools'