forked from stan-dev/cmdstanpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
89 lines (72 loc) · 2.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
skip_branch_with_pr: true
version: '{build}'
image: Visual Studio 2017
platform:
- x64
cache:
- C:\Users\appveyor\.cmdstanpy
- C:\RTools
init:
- git config --global core.autocrlf input
clone_folder: c:\projects\cmdstanpy
shallow_clone: true
clone_depth: 1
environment:
matrix:
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "64"
install:
# If there is a newer build queued for the same PR, cancel this one.
# The AppVeyor 'rollout builds' option is supposed to serve the same
# purpose but it is problematic because it tends to cancel builds pushed
# directly to master instead of just PR builds (or the converse).
# credits: JuliaLang developers.
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
throw "There are newer queued builds for this pull request, failing early." }
# Install Python (from the official .msi of https://python.org) and pip when
# not already installed.
- ps: if (-not(Test-Path($env:PYTHON))) { & appveyor\install.ps1 }
# Prepend newly installed Python to the PATH of this build (this cannot be
# done from inside the powershell script as it would require to restart
# the parent CMD process).
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Check that we have the expected version and architecture for Python
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- "python -m pip install --quiet --disable-pip-version-check --upgrade pip"
- "python -m pip install --quiet -r requirements.txt"
- "python -m pip install --quiet -r requirements-test.txt"
- "python -m pip install --quiet codecov"
- "python -m pip install --quiet ."
# don't use local package
- "mkdir new_dir"
- "cd new_dir"
# Install RTools
- "python -m cmdstanpy.install_cxx_toolchain --silent --dir C:\\"
- "dir C:\\Rtools\\RTools35"
- "SET PATH=C:\\Rtools\\RTools35\\bin;C:\\Rtools\\RTools35\\mingw_64\\bin;%PATH%"
- "SET MAKE=mingw32-make.exe"
- "gcc --version"
- "mingw32-make --version"
- "python -m cmdstanpy.install_cmdstan"
- "python ../scripts/clean_examples.py"
- "pip freeze"
- "cd .."
- "rm -rf new_dir"
build: false
test_script:
- "SET PATH=C:\\Rtools\\RTools35\\bin;C:\\Rtools\\RTools35\\mingw_64\\bin;%PATH%"
- "SET MAKE=mingw32-make.exe"
- "mkdir new_dir"
- "cd new_dir"
- "python -m pytest -v ../test --cov=../cmdstanpy"
- "python -m pip install -r ../requirements-optional.txt"
- "python ../test/example_script.py"
- "python ../scripts/clean_examples.py"
- "codecov"