-
-
Notifications
You must be signed in to change notification settings - Fork 637
241 lines (235 loc) · 9.34 KB
/
Copy pathmacos.yml
File metadata and controls
241 lines (235 loc) · 9.34 KB
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
name: macOS Build and Test
on:
push:
branches:
- 'main'
tags:
- 'v*'
paths-ignore:
- 'docs/**'
pull_request:
branches:
- '*'
paths-ignore:
- 'docs/**'
- '.github/workflows/docs_deploy.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
defaults:
run:
working-directory: cpp
jobs:
macOS:
name: ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- name: macOS 15 x64
build-framework: OFF
runner: macos-15-intel
architecture: 'x64'
python_plat_name: macosx_15_0_x86_64
- name: macOS 15 arm64
build-framework: OFF
runner: macos-15
architecture: 'arm64'
python_plat_name: macosx_15_0_arm64
- name: macOS 15 framework x64
build-framework: ON
runner: macos-15-intel
architecture: 'x64'
- name: macOS 15 framework arm64
build-framework: ON
runner: macos-15
architecture: 'arm64'
steps:
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
- uses: actions/cache@v5
id: cache
with:
path: ./cpp/build/macos/third_party/install
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./cpp/third_party/**') }}-3
- name: disable superbuild on cache hit
if: steps.cache.outputs.cache-hit == 'true'
run: |
echo "superbuild=-DSUPERBUILD=OFF" >> $GITHUB_ENV
echo "cmake_prefix_path=-DCMAKE_PREFIX_PATH=$(pwd)/build/macos/third_party/install" >> $GITHUB_ENV
- name: set SDKROOT value
run: echo "SDKROOT=$(xcrun --sdk macosx --show-sdk-path)" >> $GITHUB_ENV
- name: configure
run: cmake $superbuild $cmake_prefix_path -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=build/macos/install -DBUILD_MAVSDK_SERVER=ON -DBUILD_SHARED_LIBS=OFF -DMACOS_FRAMEWORK=${{ matrix.build-framework }} -DWERROR=ON -DENABLE_CPPTRACE=On -Bbuild/macos -H.
- name: build
run: cmake --build build/macos -j$(sysctl -n hw.ncpu) --target install
- name: unit tests
run: ./build/macos/src/unit_tests/unit_tests_runner
- name: system tests
run: ./build/macos/src/system_tests/system_tests_runner
timeout-minutes: 10
- name: test (mavsdk_server)
run: ./build/macos/src/mavsdk_server/test/unit_tests_mavsdk_server
- name: build C wrapper
working-directory: ./c
run: |
cmake -DCMAKE_INSTALL_PREFIX=build/install -DCMAKE_PREFIX_PATH="$(pwd)/../cpp/build/macos/install;$(pwd)/../cpp/build/macos/third_party/install" -DBUILD_SHARED_LIBS=ON -Bbuild -S.
cmake --build build --target install
- name: Upload framework as artefact
if: ${{ matrix.build-framework == 'ON' }}
uses: actions/upload-artifact@v7
with:
name: mavsdk_server_macos_${{ matrix.architecture }}.framework
path: ./cpp/build/macos/src/mavsdk_server/src/mavsdk_server.framework
retention-days: 2
- name: Upload binary as artefact
if: ${{ matrix.build-framework == 'OFF' }}
uses: actions/upload-artifact@v7
with:
name: mavsdk_server_macos_${{ matrix.architecture }}
path: cpp/build/macos/install/bin/mavsdk_server
retention-days: 2
- name: Publish mavsdk_server_macos to github release
if: ${{ startsWith(github.ref, 'refs/tags/v') && matrix.build-framework == 'OFF' }}
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: cpp/build/macos/install/bin/mavsdk_server
asset_name: mavsdk_server_macos_${{ matrix.architecture }}
tag: ${{ github.ref }}
overwrite: true
- name: build mavsdk wheel
if: ${{ matrix.build-framework == 'OFF' }}
working-directory: .
run: |
pip install -r py/requirements-dev.txt delocate
mkdir -p py/mavsdk/mavsdk/lib
cp c/build/install/lib/libcmavsdk.dylib py/mavsdk/mavsdk/lib/libcmavsdk.dylib
cd py/mavsdk
python3 setup.py bdist_wheel --plat-name ${{ matrix.python_plat_name }}
delocate-wheel -w wheelhouse dist/mavsdk4-*-macosx_*.whl
- name: upload mavsdk wheel
if: ${{ matrix.build-framework == 'OFF' }}
uses: actions/upload-artifact@v7
with:
name: mavsdk_wheel_macos_${{ matrix.architecture }}
path: py/mavsdk/wheelhouse/*.whl
retention-days: 2
iOS:
name: ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- name: ios
platform: OS64
sdk: iphoneos
runner: macos-15
- name: ios_simulator_x64
platform: SIMULATOR64
sdk: iphonesimulator
runner: macos-15-intel
- name: ios_simulator_arm64
platform: SIMULATORARM64
sdk: iphonesimulator
runner: macos-15
steps:
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
architecture: 'x64'
- uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
- uses: actions/cache@v5
id: cache
with:
path: ./cpp/build/${{ matrix.name }}/third_party/install
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./cpp/third_party/**', './cpp/cmake/ios.toolchain.cmake') }}-3
- name: disable superbuild on cache hit
if: steps.cache.outputs.cache-hit == 'true'
run: |
echo "superbuild=-DSUPERBUILD=OFF" >> $GITHUB_ENV
echo "cmake_prefix_path=-DCMAKE_PREFIX_PATH=$(pwd)/build/${{ matrix.name }}/third_party/install" >> $GITHUB_ENV
- name: set SDK-related environment variables (for non-cmake deps)
run: |
echo "SDKROOT=$(xcrun --sdk ${{ matrix.sdk }} --show-sdk-path)" >> $GITHUB_ENV
- name: install pymavlink dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel
python3 -m pip install future
- name: configure
run: cmake $superbuild $cmake_prefix_path -DENABLE_STRICT_TRY_COMPILE=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_TOOLCHAIN_FILE=$(pwd)/cmake/ios.toolchain.cmake -DENABLE_BITCODE=Off -DPLATFORM=${{ matrix.platform }} -DDEPLOYMENT_TARGET=14.0 -DBUILD_MAVSDK_SERVER=ON -DBUILD_SHARED_LIBS=OFF -DWERROR=ON -Bbuild/${{ matrix.name }} -H.
- name: build
run: cmake --build build/${{ matrix.name }} -j$(sysctl -n hw.ncpu)
- uses: actions/upload-artifact@v7
with:
name: mavsdk_server_${{ matrix.name }}.framework
path: ./cpp/build/${{ matrix.name }}/src/mavsdk_server/src/mavsdk_server.framework
retention-days: 2
iOS-XCFramework:
name: iOS XCFramework
needs: [macOS, iOS]
runs-on: macos-15
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- uses: actions/download-artifact@v7
with:
name: mavsdk_server_ios.framework
path: ./cpp/build/ios/src/mavsdk_server/src/mavsdk_server.framework
- uses: actions/download-artifact@v7
with:
name: mavsdk_server_ios_simulator_x64.framework
path: ./cpp/build/ios_simulator_x64/src/mavsdk_server/src/mavsdk_server.framework
- uses: actions/download-artifact@v7
with:
name: mavsdk_server_ios_simulator_arm64.framework
path: ./cpp/build/ios_simulator_arm64/src/mavsdk_server/src/mavsdk_server.framework
- uses: actions/download-artifact@v7
with:
name: mavsdk_server_macos_x64.framework
path: ./cpp/build/macos_x64/src/mavsdk_server/src/mavsdk_server.framework
- uses: actions/download-artifact@v7
with:
name: mavsdk_server_macos_arm64.framework
path: ./cpp/build/macos_arm64/src/mavsdk_server/src/mavsdk_server.framework
- name: Install tree
run: brew install tree
- name: Package
run: bash ./src/mavsdk_server/tools/package_mavsdk_server_framework.bash
- uses: actions/upload-artifact@v7
with:
name: mavsdk_server.xcframework
path: ./cpp/build/mavsdk_server.xcframework
retention-days: 2
- name: Publish xcframework
if: startsWith(github.ref, 'refs/tags/v')
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: 'cpp/build/mavsdk_server.xcframework.zip'
asset_name: 'mavsdk_server.xcframework.zip'
tag: ${{ github.ref }}
overwrite: true
- name: Publish xcframework checksum
if: startsWith(github.ref, 'refs/tags/v')
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: 'cpp/build/mavsdk_server.xcframework.zip.sha256'
asset_name: 'mavsdk_server.xcframework.zip.sha256'
tag: ${{ github.ref }}
overwrite: true