File: appveyor.yml

package info (click to toggle)
ocaml 5.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,372 kB
  • sloc: ml: 370,196; ansic: 52,820; sh: 27,396; asm: 5,462; makefile: 3,679; python: 974; awk: 278; javascript: 273; perl: 59; fortran: 21; cs: 9
file content (70 lines) | stat: -rw-r--r-- 2,299 bytes parent folder | download | duplicates (3)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#**************************************************************************
#*                                                                        *
#*                                 OCaml                                  *
#*                                                                        *
#*                         Christophe Troestler                           *
#*                                                                        *
#*   Copyright 2015 Christophe Troestler                                  *
#*                                                                        *
#*   All rights reserved.  This file is distributed under the terms of    *
#*   the GNU Lesser General Public License version 2.1, with the          *
#*   special exception on linking described in the file LICENSE.          *
#*                                                                        *
#**************************************************************************

branches:
  only:
    - /4\.*/
    - /5\.*/
    - trunk

# Compile the 64 bits version
platform:
  - x64

image: Visual Studio 2022

# Do a shallow clone of the repo to speed up the build
clone_depth: 1

environment:
  global:
    CYG_ROOT: C:/cygwin64
    CYG_MIRROR: http://mirrors.kernel.org/sourceware/cygwin/
    CYG_CACHE: C:/cygwin64/var/cache/setup
    FLEXDLL_VERSION: 0.43
    OCAMLRUNPARAM: v=0,b
    FORCE_CYGWIN_UPGRADE: 0
    BUILD_MODE: world.opt
    # Fully print commands executed by Make
    # MAKEFLAGS: V=1
  matrix:
    - PORT: mingw64
      BOOTSTRAP_FLEXDLL: true
# OCaml 5.0 does not yet support MSVC
#    - PORT: msvc64
#      BOOTSTRAP_FLEXDLL: false
#      BUILD_MODE: steps
#    - PORT: msvc32
#      BOOTSTRAP_FLEXDLL: false
#      BUILD_MODE: C
#      SDK: |-
#        "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x86

matrix:
  fast_finish: true

cache:
  - C:\cygwin64\var\cache\setup
  - C:\projects\cache

install:
# This is a hangover from monitoring effects of MPR#7452
  - wmic cpu get name
  - call "%APPVEYOR_BUILD_FOLDER%\tools\ci\appveyor\appveyor_build.cmd" install

build_script:
  - call "%APPVEYOR_BUILD_FOLDER%\tools\ci\appveyor\appveyor_build.cmd" build

test_script:
  - call "%APPVEYOR_BUILD_FOLDER%\tools\ci\appveyor\appveyor_build.cmd" test