-
Notifications
You must be signed in to change notification settings - Fork 4
254 lines (247 loc) · 8.55 KB
/
openexr.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
name: OpenEXR
on: [push, pull_request]
# Cancel in-progress builds on push to same branch / PR
# https://stackoverflow.com/a/72408109
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
ZLIB_VERSION: 1.3.1
OPENEXR_VERSION: 3.2.1
# For testing on the magnum-plugins CI we deliberately want older versions
# -- the stock version on Ubuntu 18.04 is 2.2, which is too old and leaky,
# so can't use that, but using version 3 would mean we lose the possibility
# of testing against older versions
OPENEXR_VERSION_25: 2.5.5
jobs:
windows:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019]
steps:
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Set up Visual Studio environment
uses: seanmiddleditch/gha-setup-vsdevenv@master
- name: Clone OpenEXR
uses: actions/checkout@v3
with:
repository: AcademySoftwareFoundation/openexr
ref: v${{ env.OPENEXR_VERSION }}
path: openexr
- name: Download prebuilt zlib
# Built on the `zlib` branch but hosted manually to avoid having to mess
# with access permissions
run: |
Invoke-WebRequest https://ci.magnum.graphics/zlib-${{ env.ZLIB_VERSION }}-${{ matrix.os }}.zip -OutFile zlib.zip
7z x zlib.zip -o${{ github.workspace }}/deps
- name: Build & install Debug
shell: cmd
run: |
cmake ^
-DCMAKE_C_COMPILER=cl.exe ^
-DCMAKE_CXX_COMPILER=cl.exe ^
-DCMAKE_PREFIX_PATH=$%CD:\=/%/deps ^
-DCMAKE_INSTALL_PREFIX=%CD:\=/%/install-debug ^
-DCMAKE_BUILD_TYPE=Debug ^
-DPYILMBASE_ENABLE=OFF ^
-DBUILD_SHARED_LIBS=OFF ^
-DBUILD_TESTING=OFF ^
-DOPENEXR_BUILD_TOOLS=OFF ^
-DOPENEXR_CXX_STANDARD=11 ^
-DOPENEXR_INSTALL_EXAMPLES=OFF ^
-DOPENEXR_INSTALL_PKG_CONFIG=OFF ^
-DOPENEXR_INSTALL_TOOLS=OFF ^
-DOPENEXR_FORCE_INTERNAL_IMATH=ON ^
-G Ninja -S openexr -B build-debug
ninja -C build-debug install
- name: Build & install Release
shell: cmd
# Same comment as above.
run: |
cmake ^
-DCMAKE_C_COMPILER=cl.exe ^
-DCMAKE_CXX_COMPILER=cl.exe ^
-DCMAKE_PREFIX_PATH=%CD:\=/%/deps ^
-DCMAKE_INSTALL_PREFIX=%CD:\=/%/install ^
-DCMAKE_BUILD_TYPE=Release ^
-DPYILMBASE_ENABLE=OFF ^
-DBUILD_SHARED_LIBS=OFF ^
-DBUILD_TESTING=OFF ^
-DOPENEXR_BUILD_TOOLS=OFF ^
-DOPENEXR_CXX_STANDARD=11 ^
-DOPENEXR_INSTALL_EXAMPLES=OFF ^
-DOPENEXR_INSTALL_TOOLS=OFF ^
-DOPENEXR_FORCE_INTERNAL_IMATH=ON ^
-G Ninja -S openexr -B build
ninja -C build install
- name: Upload Debug artifacts
uses: actions/upload-artifact@v1
with:
name: openexr-${{ env.OPENEXR_VERSION }}-${{ matrix.os }}-debug
path: install-debug
- name: Upload Release artifacts
uses: actions/upload-artifact@v1
with:
name: openexr-${{ env.OPENEXR_VERSION }}-${{ matrix.os }}
path: install
windows-mingw:
name: windows-mingw
runs-on: windows-2019
steps:
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Set up MinGW environment
uses: msys2/setup-msys2@v2
- name: Clone OpenEXR
uses: actions/checkout@v3
with:
repository: AcademySoftwareFoundation/openexr
ref: v${{ env.OPENEXR_VERSION }}
path: openexr
- name: Download prebuilt zlib
# Built on the `zlib` branch but hosted manually to avoid having to mess
# with access permissions
run: |
Invoke-WebRequest https://ci.magnum.graphics/zlib-${{ env.ZLIB_VERSION }}-windows-mingw.zip -OutFile zlib.zip
7z x zlib.zip -o${{ github.workspace }}/deps
- name: Build & install
shell: cmd
run: |
cmake ^
-DCMAKE_C_COMPILER=gcc.exe ^
-DCMAKE_CXX_COMPILER=g++.exe ^
-DCMAKE_PREFIX_PATH=%CD:\=/%/deps ^
-DCMAKE_INSTALL_PREFIX=%CD:\=/%/install ^
-DCMAKE_BUILD_TYPE=Release ^
-DPYILMBASE_ENABLE=OFF ^
-DBUILD_SHARED_LIBS=OFF ^
-DBUILD_TESTING=OFF ^
-DOPENEXR_BUILD_TOOLS=OFF ^
-DOPENEXR_CXX_STANDARD=11 ^
-DOPENEXR_INSTALL_EXAMPLES=OFF ^
-DOPENEXR_INSTALL_TOOLS=OFF ^
-DOPENEXR_FORCE_INTERNAL_IMATH=ON ^
-G Ninja -S openexr -B build
ninja -C build install/strip
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: openexr-${{ env.OPENEXR_VERSION }}-windows-mingw
path: install
ubuntu:
name: ${{ matrix.os }}
runs-on: ${{ matrix.runs-on }}
container: ${{ matrix.container }}
strategy:
matrix:
include:
- os: ubuntu-18.04
runs-on: ubuntu-latest
container: ubuntu:bionic-20220427
steps:
- name: Install base build tools
run: |
apt update
apt install -y ninja-build g++ wget unzip git
mkdir -p deps
# It needs CMake 3.12, 18.04 has 3.10
- name: Download CMake 3.12
run: |
mkdir -p $HOME/cmake && cd $HOME/cmake
wget --no-check-certificate https://cmake.org/files/v3.12/cmake-3.12.4-Linux-x86_64.tar.gz
tar --strip-components=1 -xzf cmake-3.12.4-Linux-x86_64.tar.gz
echo "$HOME/cmake/bin" >> $GITHUB_PATH
- name: Fetch prebuilt zlib
run: |
mkdir -p deps && cd deps
wget https://ci.magnum.graphics/zlib-${{ env.ZLIB_VERSION }}-${{ matrix.os }}.zip
unzip zlib-${{ env.ZLIB_VERSION }}-${{ matrix.os }}.zip
- name: Clone OpenEXR
uses: actions/checkout@v3
with:
repository: AcademySoftwareFoundation/openexr
ref: v${{ env.OPENEXR_VERSION }}
path: openexr
- name: Build & install
run: |
mkdir build && cd build
cmake ../openexr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$(pwd)/../install \
-DCMAKE_PREFIX_PATH=$(pwd)/../deps \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_TESTING=OFF \
-DOPENEXR_BUILD_TOOLS=OFF \
-DOPENEXR_CXX_STANDARD=11 \
-DOPENEXR_INSTALL_EXAMPLES=OFF \
-DOPENEXR_INSTALL_TOOLS=OFF \
-DOPENEXR_INSTALL_PKG_CONFIG=OFF \
-DOPENEXR_FORCE_INTERNAL_IMATH=ON \
-G Ninja
ninja install/strip
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: openexr-${{ env.OPENEXR_VERSION }}-${{ matrix.os }}
path: install
ubuntu-25:
name: 25-${{ matrix.os }}-gcc${{ matrix.env.GCC }}
runs-on: ${{ matrix.runs-on }}
container: ${{ matrix.container }}
strategy:
matrix:
include:
- os: ubuntu-18.04
runs-on: ubuntu-latest
container: ubuntu:bionic-20220427
env:
GCC: 4.8
- os: ubuntu-18.04
runs-on: ubuntu-latest
container: ubuntu:bionic-20220427
env:
GCC: 7
steps:
- name: Install base build tools
run: |
apt update
apt install -y ninja-build cmake g++ wget zlib1g-dev
mkdir -p deps
- name: Install GCC 4.8
run: apt-get install -y g++-4.8
if: ${{ matrix.env.GCC == '4.8' }}
# No (static) zlib used here -- we want it to depend on the system version
- name: Clone OpenEXR
uses: actions/checkout@v3
with:
repository: AcademySoftwareFoundation/openexr
ref: v${{ env.OPENEXR_VERSION_25 }}
path: openexr
- name: Build & install
run: |
mkdir build && cd build
cmake ../openexr \
-DCMAKE_C_COMPILER=gcc-${{ matrix.env.GCC }} \
-DCMAKE_CXX_COMPILER=g++-${{ matrix.env.GCC }} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$(pwd)/../install \
-DPYILMBASE_ENABLE=OFF \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_TESTING=OFF \
-DINSTALL_OPENEXR_DOCS=OFF \
-DINSTALL_OPENEXR_EXAMPLES=OFF \
-DOPENEXR_BUILD_UTILS=OFF \
-DOPENEXR_CXX_STANDARD=11 \
-DILMBASE_INSTALL_PKG_CONFIG=OFF \
-DOPENEXR_INSTALL_PKG_CONFIG=OFF \
-DPYILMBASE_INSTALL_PKG_CONFIG=OFF \
-G Ninja
ninja install/strip
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: openexr-${{ env.OPENEXR_VERSION_25 }}-${{ matrix.os }}-gcc${{ matrix.env.GCC }}
path: install