This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
forked from flimlib/flimlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
47 lines (37 loc) · 1.49 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
version: 1.0.{build}
clone_folder: c:\projects\flimlib
image: Visual Studio 2017
platform: x64
configuration: Release
environment:
MAVEN_PASS:
secure: YdzLF8dSsHb8PwXVy9buOI3lGhJ5ReexXDLvD34eJt1C9FXuf9o6oBX72GTc5Jgd
GPG_KEY_NAME:
secure: xyRp14pV2TD4fYfi35GfksuJ1I1Wk/5nIEo0F6zB3H8=
GPG_PASSPHRASE:
secure: gTrK/G3QiaY3zP8fanCshlU9beRK/4tPvzeylGd+kL2v5BmaisUZFlhKNEWCO1Bm
# lifted from https://github.com/opensim-org/opensim-core/blob/master/appveyor.yml
cache:
## Cache swig, which we install via AppVeyor.
# The syntax here is <dir-to-cache> -> <invalidated-when-this-file-changes>
# If the appveyor.yml script is changed, then the cache is invalidated.
# https://www.appveyor.com/docs/build-cache/
- C:\ProgramData\chocolatey\bin # -> appveyor.yml # swig.exe
- C:\ProgramData\chocolatey\lib # -> appveyor.yml # supporting swig Lib files.
- C:\Users\appveyor\.m2
install:
- cmake --version
## Use Chocolatey to install SWIG.
# Only install swig if it isn't present (as a result of AppVeyor's caching).
# SWIG 3.0.8 is the minimum required version, but it does not yet exist in
# Chocolatey.
- IF NOT EXIST C:\ProgramData\chocolatey\bin\swig.exe choco install swig --version 3.0.9 --yes --limit-output #> $null
# lifted from https://github.com/opensim-org/opensim-core/blob/master/appveyor.yml
matrix:
fast_finish: true
before_build:
- ps: .\.appveyor\setup.ps1
build_script:
- ps: .\.appveyor\build.ps1
# test_script:
# - dir /s %APPVEYOR_BUILD_FOLDER%\target