Skip to content

Commit

Permalink
Update appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
richkmeli authored Sep 10, 2017
1 parent 84d3a92 commit 71f552f
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
version: 1.0.{build}
os: Visual Studio 2013

environment:
CTEST_OUTPUT_ON_FAILURE: 1
TargetPath: /bin/Richkware.exe
matrix:
- Compiler: mingw
Build: static
- Compiler: mingw
Build: shared

cache:
- C:\mingw64

install:
- ps: |
if ($env:Compiler -eq "mingw" -AND -Not (Test-Path "C:\mingw64")) {
# Install MinGW.
$file = "x86_64-4.9.2-release-win32-seh-rt_v4-rev3.7z"
wget https://bintray.com/artifact/download/drewwells/generic/$file -OutFile $file
&7z x -oC:\ $file > $null
}
- set PATH=C:\mingw64\bin;%PATH%
- set CC=gcc

build_script:
- cmd: make
- ps: |
if ($env:Compiler -eq "mingw") {
mingw32-make
}
artifacts:
- path: /bin/
name: Richkware.exe

0 comments on commit 71f552f

Please sign in to comment.