forked from hpi-swa/smalltalkCI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
40 lines (35 loc) · 1.01 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
34
35
36
37
38
39
40
environment:
CYG_ROOT: C:\cygwin
CYG_BASH: C:\cygwin\bin\bash
CYG_CACHE: C:\cygwin\var\cache\setup
CYG_EXE: C:\cygwin\setup-x86.exe
CYG_MIRROR: http://cygwin.mirror.constant.com
matrix:
- SMALLTALK: Squeak64-trunk
- SMALLTALK: Squeak64-5.3
- SMALLTALK: Squeak64-5.2
- SMALLTALK: Squeak64-5.1
- SMALLTALK: Squeak32-5.0
- SMALLTALK: Pharo64-alpha
- SMALLTALK: Pharo32-5.0
matrix:
fast_finish: true
allow_failures:
- SMALLTALK: Squeak64-trunk
- SMALLTALK: Pharo64-alpha
platform:
- x64
clone_depth: 5
build: false
version: "{build}"
install:
- '%CYG_EXE% -dgnqNO -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P unzip'
# Cygwin build script
#
# NOTES:
#
# The stdin/stdout file descriptor appears not to be valid for the Appveyor
# build which causes failures as certain functions attempt to redirect
# default file handles. Ensure a dummy file descriptor is opened with 'exec'.
test_script:
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; bin/smalltalkci"'