-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
70 lines (56 loc) · 1.85 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
# reference: https://www.appveyor.com/docs/appveyor-yml/
version: 0.3.{build}
# build all branches by default
image: Visual Studio 2017
platform: x64
configuration: Debug
clone_folder: c:\projects\onnx
clone_depth: 2
# pick as per https://www.appveyor.com/docs/build-environment/#python
environment:
global:
ONNX_NAMESPACE: ONNX_NAMESPACE_FOO_BAR_FOR_CI
matrix:
# onnx-ml
- ONNX_ML: 1
CONDA_PREFIX: C:\Miniconda35-x64
- ONNX_ML: 1
CONDA_PREFIX: C:\Miniconda36-x64
- ONNX_ML: 1
CONDA_PREFIX: C:\Miniconda36
- ONNX_ML: 1
CONDA_PREFIX: C:\Miniconda35
install:
- cmd: git submodule update --init --recursive
before_build:
- cmd: SET PATH=%CONDA_PREFIX%;%CONDA_PREFIX%\Scripts;%PATH%
- cmd: conda install -y -c conda-forge protobuf numpy
- cmd: pip install pytest-cov nbval
build_script:
# Build and test onnx.
- cmd: cd c:\projects\onnx
- cmd: set ONNX_BUILD_TESTS=1
- cmd: python setup.py bdist_wheel --universal --dist-dir .
- cmd: dir /s /b /a-d "onnx_gtests.exe" >UT.txt & set /p _UT= < UT.txt & %_UT%
- cmd: dir /b /a-d "*.whl" >WheelFile.txt & set /p _wheel= < WheelFile.txt
- cmd: pip install %_wheel%
- cmd: pytest
- cmd: python onnx/defs/gen_doc.py
- cmd: python onnx/gen_proto.py
# Run type checks
- cmd: pip uninstall -y %_wheel%
- cmd: rm -rf .setuptools-cmake-build
- cmd: pip install -v -e .[mypy]
- cmd: python setup.py typecheck
# TODO: protobuf files generated by generate-data below show format diffs right now.
# Will figure out and fix it in separate PR.
#- cmd: C:\Miniconda36\Scripts\backend-test-tools generate-data
- cmd: git diff --exit-code
# add after_test commands to collect logs and such
# add artifacts: -path to collect build artifacts
# commented out to avoid comments on threads
# notifications:
# - provider: GitHubPullRequest
# on_build_success: true
# on_build_failure: true
# on_build_status_changed: true