-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (56 loc) · 2.46 KB
/
win_no_exception_ci.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
name: Windows_No_Exception_CI
on:
push:
branches: [ main, rel-* ]
pull_request:
branches: [ main, rel-* ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
architecture: ['x64']
steps:
- name: Checkout ONNX
uses: actions/checkout@v2
with:
path: ./onnx
- name: Checkout ONNX submodules
shell: bash
run: |
cd onnx
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Build and test ONNX binaries
run: |
. .\onnx\workflow_scripts\protobuf\build_protobuf_win.ps1 -arch ${{ matrix.architecture }}
cd onnx
echo "Build ONNX"
cmake -G "Visual Studio 17 2022" -A ${{ matrix.architecture }} -DONNX_USE_PROTOBUF_SHARED_LIBS=OFF -DONNX_USE_LITE_PROTO=ON -DONNX_WERROR=ON -DONNX_DISABLE_EXCEPTIONS=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Release -DONNX_USE_MSVC_STATIC_RUNTIME=OFF -DONNX_ML=1 -DONNX_BUILD_TESTS=ON -S . -B .setuptools-cmake-build\
cd .setuptools-cmake-build\
msbuild onnx.sln /m /p:Configuration=Release
echo "Run gtests"
Release\onnx_gtests.exe
if($lastexitcode -ne 0) {
EXIT 1
}
cd ..
git clean -xdf
echo "Build ONNX with non-static registration for testing selective ONNX schema loading"
cmake -G "Visual Studio 17 2022" -A ${{ matrix.architecture }} -DONNX_USE_PROTOBUF_SHARED_LIBS=OFF -DONNX_USE_LITE_PROTO=ON -DONNX_WERROR=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Release -DONNX_USE_MSVC_STATIC_RUNTIME=OFF -DONNX_ML=1 -DONNX_BUILD_TESTS=ON -DONNX_DISABLE_STATIC_REGISTRATION=ON -S . -B .setuptools-cmake-build\
cd .setuptools-cmake-build\
msbuild onnx.sln /m /p:Configuration=Release
echo "Only test selective ONNX schema loading"
Release\onnx_gtests.exe --gtest_filter="SchemaRegistrationTest*"
if($lastexitcode -ne 0) {
EXIT 1
}