Skip to content

Commit ab45365

Browse files
committed
chore: Add AppVeyor integration (stub).
1 parent 83f72ec commit ab45365

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

.appveyor.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
version: 0.4.0.{build}
2+
3+
branches:
4+
only:
5+
- master
6+
- travis
7+
8+
environment:
9+
matrix:
10+
- TARGET: Go 1.10.0
11+
ARCH: 64
12+
ARCHGO:
13+
VERGO: 110
14+
MGWVER: x86_64-7.2.0-posix-seh-rt_v5-rev1
15+
16+
- TARGET: Go 1.10.0
17+
ARCH: 32
18+
ARCHGO: -x86
19+
VERGO: 110
20+
MGWVER: i686-6.3.0-posix-dwarf-rt_v5-rev1
21+
22+
install:
23+
- cmd: echo Testing sciter%ARCH% with %TARGET%.
24+
- cmd: echo Current directory is %APPVEYOR_BUILD_FOLDER%
25+
- cmd: set PATH=C:\projects\deps;C:\go%VERGO%%ARCHGO%\bin;C:\mingw-w64\%MGWVER%\mingw64\bin;%PATH%
26+
- cmd: echo %PATH%
27+
- cmd: echo %GOPATH%
28+
29+
- gcc --version
30+
- go version
31+
32+
- mkdir C:\projects\deps
33+
- curl -so "C:\projects\deps\sciter.dll" "https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin/%ARCH%/sciter.dll"
34+
35+
before_build:
36+
- cmd: set GOPATH=%APPVEYOR_BUILD_FOLDER%
37+
38+
39+
build_script:
40+
- cmd: cd
41+
- cmd: dir
42+
43+
44+
test_script:
45+
- cmd: cd
46+
- go test

0 commit comments

Comments
 (0)