-
Notifications
You must be signed in to change notification settings - Fork 156
299 lines (251 loc) · 9.56 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
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
name: OpenRV
# TODO: Pin workflow extension to specific commits for security
on:
push:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml
pull_request:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml
jobs:
macos-13:
runs-on: macos-13
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Display Python installation location
run: |
python -c "import sys; print(sys.executable)"
- name: Prepare Qt folder
run: |
mkdir -p "${{ github.workspace }}/deps"
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
host: 'mac'
target: 'desktop'
arch: 'clang_64'
dir: "${{ github.workspace }}/deps"
install-deps: 'false'
modules: 'debug_info qtcharts qtdatavis3d qtlottie qtnetworkauth qtquick3d qtquicktimeline qtscript qtwebengine qtwebglplugin'
archives: 'd3dcompiler_47 opengl32sw qt3d qtactiveqt qtbase qtconnectivity qtdeclarative qtgraphicaleffects qtimageformats qtlocation qtmultimedia qtquickcontrols qtquickcontrols2 qtremoteobjects qtscxml qtsensors qtsvg qttools qttranslations qtwebchannel qtwebsockets qtwebview qtwinextras qtxmlpatterns'
cache: true
cache-key-prefix: 'install-qt-action'
setup-python: 'false'
tools: 'tools_qtcreator'
set-env: 'true'
tools-only: 'false'
aqtversion: '==3.1.*'
- name: Display Qt installation
run: |
ls -al "${{ github.workspace }}/deps/Qt/5.15.2/clang_64"
ls -al ${{ github.workspace }}/deps/Qt/5.15.2/clang_64/bin
- name: Install pip
run: |
python3 -m pip install --user --upgrade -r requirements.txt
- name: Restore Homebrew cache
uses: actions/cache@v3
id: brew-cache-restore
with:
path: ~/Library/Caches/Homebrew
key: ${{ runner.os }}-brew
- name: Install Homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- name: Install dependencies
run: |
brew install cmake ninja readline sqlite3 xz zlib tcl-tk autoconf automake libtool python yasm clang-format black meson nasm pkg-config glew
- name: Configure
run: |
export QT_HOME=${{ github.workspace }}/deps/Qt/5.15.2/clang_64
cmake -B _build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DRV_DEPS_QT5_LOCATION=$QT_HOME -DRV_VFX_PLATFORM=CY2023
- name: Build dependencies
run: |
cmake --build _build --target dependencies --parallel=1 -v
- name: Build main executable
run: |
cmake --build _build --target main_executable --parallel -v
- name: Tests
run: |
ctest --test-dir _build --extra-verbose
macos-14-arm64:
runs-on: macos-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Display Python installation location
run: |
python -c "import sys; print(sys.executable)"
- name: Prepare Qt folder
run: |
mkdir -p "${{ github.workspace }}/deps"
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
host: 'mac'
target: 'desktop'
arch: 'clang_64'
dir: "${{ github.workspace }}/deps"
install-deps: 'false'
modules: 'debug_info qtcharts qtdatavis3d qtlottie qtnetworkauth qtquick3d qtquicktimeline qtscript qtwebengine qtwebglplugin'
archives: 'd3dcompiler_47 opengl32sw qt3d qtactiveqt qtbase qtconnectivity qtdeclarative qtgraphicaleffects qtimageformats qtlocation qtmultimedia qtquickcontrols qtquickcontrols2 qtremoteobjects qtscxml qtsensors qtsvg qttools qttranslations qtwebchannel qtwebsockets qtwebview qtwinextras qtxmlpatterns'
cache: true
cache-key-prefix: 'install-qt-action'
setup-python: 'false'
tools: 'tools_qtcreator'
set-env: 'true'
tools-only: 'false'
aqtversion: '==3.1.*'
- name: Install pip
run: |
python3 -m pip install --user --upgrade -r requirements.txt
- name: Restore Homebrew cache
uses: actions/cache@v3
id: brew-cache-restore
with:
path: ~/Library/Caches/Homebrew
key: ${{ runner.os }}-brew
- name: Install Homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- name: Install dependencies
run: |
brew install cmake ninja readline sqlite3 xz zlib tcl-tk autoconf automake libtool python yasm clang-format black meson nasm pkg-config glew
brew install --cask xquartz
- name: Fix X11 headers location
run: |
ls -al /opt/X11
mkdir -p /usr/local/include
ln -s /opt/X11/include/X11 /usr/local/include/X11
- name: Configure
run: |
export QT_HOME=${{ github.workspace }}/deps/Qt/5.15.2/clang_64
cmake -B _build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DRV_DEPS_QT5_LOCATION=$QT_HOME -DRV_VFX_PLATFORM=CY2023
- name: Build dependencies
run: |
cmake --build _build --target dependencies --parallel=1 -v
- name: Failure debugging
if: always()
run: |
cat ./_build/RV_DEPS_PYTHON3/src/config.log
- name: Build main executable
run: |
cmake --build _build --target main_executable --parallel -v
- name: Tests
run: |
ctest --test-dir _build --extra-verbose
windows:
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup msys2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
cache: true
install: >-
mingw-w64-x86_64-autotools
mingw-w64-x86_64-cmake
mingw-w64-x86_64-cmake-cmcldeps
mingw-w64-x86_64-glew
mingw-w64-x86_64-libarchive
mingw-w64-x86_64-make
mingw-w64-x86_64-meson
mingw-w64-x86_64-toolchain
autoconf
automake
bison
flex
git
libtool
nasm
p7zip
patch
unzip
zip
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Display Python installation location
run: |
python -c "import sys; print(sys.executable)"
- run: |
echo "export PATH=/c/hostedtoolcache/windows/Python/3.10.11/x64:/c/msys64/mingw64/bin:$PATH:/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin" >> ~/.bash_profile
shell: msys2 {0}
- run: |
echo "export ACLOCAL_PATH=/c/msys64/usr/share/aclocal" >> ~/.bash_profile
shell: msys2 {0}
- run: |
echo $PATH
echo $ACLOCAL_PATH
which python
which python3
shell: msys2 {0}
- name: Prepare Qt folder
run: |
mkdir -p /c/qt
shell: msys2 {0}
# - name: Cache Qt installation
# uses: actions/cache@v3
# id: qt-cache
# with:
# path: "c:/"
# key: ${{ runner.os }}-qt-${{ hashFiles('~/qt/**') }}
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
host: 'windows'
target: 'desktop'
arch: 'win64_msvc2019_64'
dir: "c:/"
install-deps: 'false'
modules: 'debug_info qtcharts qtdatavis3d qtlottie qtnetworkauth qtquick3d qtquicktimeline qtscript qtwebengine qtwebglplugin'
archives: 'd3dcompiler_47 opengl32sw qt3d qtactiveqt qtbase qtconnectivity qtdeclarative qtgraphicaleffects qtimageformats qtlocation qtmultimedia qtquickcontrols qtquickcontrols2 qtremoteobjects qtscxml qtsensors qtsvg qttools qttranslations qtwebchannel qtwebsockets qtwebview qtwinextras qtxmlpatterns'
cache: true
cache-key-prefix: 'install-qt-action'
setup-python: 'false'
tools: 'tools_qtcreator'
set-env: 'true'
tools-only: 'false'
aqtversion: '==3.1.*'
- name: Install pip
run: |
python3 -m pip install --user --upgrade wheel setuptools
python3 -m pip install --user --upgrade -r ./requirements.txt
shell: msys2 {0}
- name: Configure
run: |
which perl
export QT_HOME=c:/Qt/5.15.2/msvc2019_64
cmake -B _build -G "Visual Studio 17 2022" -A x64 -DRV_DEPS_WIN_PERL_ROOT=c:/Strawberry/perl/bin -DCMAKE_BUILD_TYPE=Release -DRV_DEPS_QT5_LOCATION=$QT_HOME -DRV_VFX_PLATFORM=CY2023
shell: msys2 {0}
- name: Build deps
run: |
cmake --build _build --config Release --target dependencies --parallel=1 -v
shell: msys2 {0}
id: build_deps
- name: Build main
run: |
cmake --build _build --config Release --target main_executable --parallel -v
shell: msys2 {0}