-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathappveyor.yml
51 lines (44 loc) · 1.53 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
47
48
49
50
51
platform:
- x64
image: Visual Studio 2019
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
# These should be identical to the values in .github/workflows/*.yml
OPAM_REPO: https://github.com/ocaml/opam-repository.git
OPAM_REPO_SHA: fd4405c83bcd23f91373978b45479694079a8c79
OPAM_TEST_REPO_SHA: fd4405c83bcd23f91373978b45479694079a8c79
matrix:
- CYG_ROOT: cygwin
CYG_ARCH: x86
- CYG_ROOT: cygwin64
CYG_ARCH: x86_64
DEP_MODE: lib-pkg
- appveyor_build_worker_image: Visual Studio 2017
OCAML_PORT: msvc
DEP_MODE: lib-pkg
GIT_FOR_WINDOWS: 1
- appveyor_build_worker_image: Visual Studio 2017
OCAML_PORT: msvc64
- OCAML_PORT: mingw
- OCAML_PORT: mingw64
DEP_MODE: lib-pkg
GIT_FOR_WINDOWS: 1
cache:
- C:\projects\opam\bootstrap
- C:\projects\opam\src_ext\archives
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'))