forked from ocaml/opam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
46 lines (38 loc) · 1.17 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
41
42
43
44
45
46
platform:
- x64
image: Visual Studio 2017
environment:
global:
CYG_ROOT: cygwin64
CYG_ARCH: x86_64
OCAML_PORT:
CYG_CACHE: C:/cygwin/var/cache/setup
CYG_MIRROR: http://mirrors.kernel.org/sourceware/cygwin/
DEP_MODE: lib-ext
matrix:
- CYG_ROOT: cygwin
CYG_ARCH: x86
- CYG_ROOT: cygwin64
CYG_ARCH: x86_64
DEP_MODE: lib-pkg
- OCAML_PORT: msvc
DEP_MODE: lib-pkg
- OCAML_PORT: msvc64
- OCAML_PORT: mingw
- OCAML_PORT: mingw64
DEP_MODE: lib-pkg
cache:
- C:\projects\opam\bootstrap
- C:\projects\opam\src_ext\archives
init:
- "echo System architecture: %PLATFORM%"
install:
- call "%APPVEYOR_BUILD_FOLDER%\appveyor_build.cmd" install
build_script:
- call "%APPVEYOR_BUILD_FOLDER%\appveyor_build.cmd" build
test_script:
- call "%APPVEYOR_BUILD_FOLDER%\appveyor_build.cmd" test
# Uncomment this to enable Remote Desktop on the build worker at the end of the
# build. The worker is available for the remainder of the allocated hour.
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))