forked from USC-ACTLab/libmotioncapture
-
Notifications
You must be signed in to change notification settings - Fork 16
179 lines (144 loc) · 4.2 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
name: CI
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ main ]
# schedule:
# # Weekly build to make sure dependencies are OK
# - cron: '30 14 * * 3'
jobs:
Source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install sdist dependencies
run: pip3 install setuptools
- name: Generate source distribution tarball
run: python3 setup.py sdist
- name: Build source distribution
run: |
sudo apt-get install -y libboost-system-dev libboost-thread-dev libeigen3-dev ninja-build
pip3 install wheel
pip3 wheel dist/*.tar.gz
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: source-build
path: "dist/*.tar.gz"
Linux:
runs-on: ubuntu-22.04
needs: Source
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Pull builder image
run: docker pull quay.io/pypa/manylinux2014_x86_64
- name: Python version
run: python --version
- name: Build wheels
run: tools/build/build-wheels.sh ${{ matrix.python }}
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: linux-build
path: "dist/*.whl"
MacOS:
runs-on: macos-12
needs: Source
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
brew install eigen boost
pip install cmake ninja wheel
- name: Build
run: python setup.py bdist_wheel
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: macos-build
path: "dist/*.whl"
Windows:
runs-on: windows-2022
needs: Source
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install wheel
vcpkg install eigen3:x64-windows
- name: Install boost
uses: MarkusJx/install-boost@v1.0.1
id: install-boost
with:
boost_version: 1.73.0
toolset: msvc14.2
- name: Build
run: python setup.py bdist_wheel
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
CMAKE_TOOLCHAIN_FILE: "C:/vcpkg/scripts/buildsystems/vcpkg.cmake"
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: win-build
path: "dist/*.whl"
Publish:
runs-on: ubuntu-22.04
environment:
name: pypi
url: https://pypi.org/p/motioncapture
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
needs: [Source, Linux, MacOS, Windows]
# Only run publish if we have tagged the version
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
# download all the artifacts
- uses: actions/download-artifact@v3
- name: Move all files into the dist folder
run: |
mkdir dist
mv source-build/* dist
mv linux-build/* dist
mv macos-build/* dist
mv win-build/* dist
ls -R dist
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Check match between the build version and the current git tag
run: |
sudo apt-get install -y jq
pip3 install wheel-inspect
export TAG=$(echo ${{ github.ref }} | cut -d/ -f3)
python3 -m wheel_inspect dist/*.whl | jq .version | grep ^\\\"$TAG\\\"$
- name: Publish on Pypi
uses: pypa/gh-action-pypi-publish@release/v1