mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Appveyor: Add appveyor.yml
Appveyor.yml now includes three platforms: - x86 : Win32 - x64 : Win64 - msys : MSYS (64bits)
This commit is contained in:
parent
e092923aac
commit
2ff4400041
1 changed files with 19 additions and 0 deletions
19
appveyor.yml
Normal file
19
appveyor.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
environment:
|
||||
matrix:
|
||||
- ARCH: x64
|
||||
- ARCH: x86
|
||||
- ARCH: msys
|
||||
|
||||
build_script:
|
||||
- if %ARCH%.==x64. set PATH=c:\msys64\usr\bin;c:\msys64\mingw64\bin;%PATH%
|
||||
- if %ARCH%.==x86. set PATH=c:\msys64\usr\bin;c:\msys64\mingw32\bin;%PATH%
|
||||
- if %ARCH%.==msys. set PATH=c:\msys64\usr\bin;%PATH%
|
||||
- if %ARCH%.==x64. set CC=c:/msys64/mingw64/bin/gcc
|
||||
- if %ARCH%.==x86. set CC=c:/msys64/mingw32/bin/gcc
|
||||
- if %ARCH%.==msys. set CC=gcc
|
||||
- if %ARCH%.==x64. set EXARG=EXCLUDE_POSIX_LIBS=1
|
||||
- if %ARCH%.==x86. set EXARG=EXCLUDE_POSIX_LIBS=1
|
||||
- if %ARCH%.==msys. set EXARG=PLATFORM=msys
|
||||
- make CC=%CC% %EXARG%
|
||||
- make CC=%CC% %EXARG% test
|
||||
|
Loading…
Add table
Reference in a new issue