-
Notifications
You must be signed in to change notification settings - Fork 4
207 lines (163 loc) · 4.8 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build-opencv:
name: Build OpenCV
strategy:
matrix:
os: [ubuntu, macos, windows]
defaults:
run:
shell: bash
env:
MATRIX_OS: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
steps:
- name: Get latest release
id: latest-release
run: |
curl -s https://api.github.com/repos/opencv/opencv/releases/latest \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
| jq -r '.tag_name' | tee latest-release.txt
echo "tag=$(cat latest-release.txt)" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
with:
repository: opencv/opencv
ref: ${{ steps.latest-release.outputs.tag }}
- uses: Chocobo1/setup-ccache-action@v1
with:
windows_compile_environment: msvc
- uses: ilammy/msvc-dev-cmd@v1
id: msvc-env
if: matrix.os == 'windows'
- name: Setup MSVC environment
if: steps.msvc-env.conclusion == 'success'
run: |
echo "CMAKE_GENERATOR=Ninja" >> $GITHUB_ENV
echo "CC=cl" >> $GITHUB_ENV
echo "CXX=cl" >> $GITHUB_ENV
- name: CMake build
run: |
mkdir build
cd build
cmake .. \
-D CMAKE_INSTALL_PREFIX=../opencv \
-D CMAKE_BUILD_TYPE=Release \
-D BUILD_LIST=core,imgproc,features2d \
-D BUILD_SHARED_LIBS=OFF \
-D ENABLE_CCACHE=ON \
-D WITH_ADE=OFF \
-D WITH_PROTOBUF=OFF \
-D WITH_QUIRC=OFF \
-D WITH_ITT=OFF \
-D WITH_OPENEXR=OFF
cmake --build . --target install --parallel 4
- uses: actions/upload-artifact@v3
with:
name: opencv-${{ matrix.os }}
path: ./opencv
build:
name: Build Wheel
needs: [build-opencv]
strategy:
matrix:
os: [ubuntu, macos, windows]
python: ["3.8", "3.9", "3.10", "3.11"]
defaults:
run:
shell: bash
env:
MATRIX_OS: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: opencv-${{ matrix.os }}
path: ./opencv
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- uses: ilammy/msvc-dev-cmd@v1
id: msvc-env
if: matrix.os == 'windows'
- name: Setup MSVC environment
if: steps.msvc-env.conclusion == 'success'
run: |
CV_DIR=$(find ./opencv/x64 | grep -i '\.cmake$' | head -n 1)
echo "OpenCV_DIR=$(realpath $(dirname $CV_DIR))" >> $GITHUB_ENV
echo "OpenCV_STATIC=ON" >> $GITHUB_ENV
- name: Setup Unix environment
if: steps.msvc-env.conclusion == 'skipped'
run: |
echo "OpenCV_DIR=$(pwd)/opencv/lib/cmake/opencv4" >> $GITHUB_ENV
echo "OpenCV_STATIC=ON" >> $GITHUB_ENV
- name: Build wheel
env:
VERBOSE: 1
run: |
pip install poetry
poetry build --format wheel
- uses: actions/upload-artifact@v3
with:
name: wheel-${{matrix.os}}-${{matrix.python}}
path: ./dist/*.whl
- name: Test wheel import
env:
SYSTEM_VERSION_COMPAT: 0
run: |
pip install dist/*.whl
python -vc "from orb_slam3 import ORBExtractor"
test:
name: Test Wheel
needs: [build]
strategy:
matrix:
os: [ubuntu, macos, windows]
python: ["3.8", "3.9", "3.10", "3.11"]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v3
- name: Download wheel
uses: actions/download-artifact@v3
with:
name: wheel-${{matrix.os}}-${{matrix.python}}
path: ./dist
- name: Install Poetry
run: |
pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: poetry
- name: Install dependencies
run: |
poetry install --no-root --only=test
poetry run pip install dist/*.whl
- name: Run tests
run: |
poetry run pytest
cleanup:
name: Cleanup artifacts
runs-on: ubuntu-latest
needs: [build, test]
steps:
- uses: geekyeggo/delete-artifact@v2
with:
name: opencv-*
- uses: actions/download-artifact@v3
- name: Merge wheels
run: |
mkdir dist
cp -v wheel-*/*.whl dist/
- uses: actions/upload-artifact@v3
with:
name: wheel-all
path: ./dist/*.whl