|
20 | 20 |
|
21 | 21 | jobs: |
22 | 22 |
|
23 | | - build-openexr-brew: |
24 | | - |
25 | | - runs-on: macos-latest |
26 | | - |
27 | | - steps: |
28 | | - |
29 | | - - name: install libtiff |
30 | | - run: brew install libtiff |
31 | | - |
32 | | - - name: install openexr |
33 | | - run: brew install openexr |
34 | | - |
35 | | - - name: install aces_container |
36 | | - run: brew install aces_container |
37 | | - |
38 | | - - uses: actions/checkout@v4 |
39 | | - |
40 | | - - name: Configure CMake |
41 | | - # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |
42 | | - # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |
43 | | - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} |
44 | | - |
45 | | - - name: Build |
46 | | - # Build your program with the given configuration |
47 | | - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
48 | | - |
49 | 23 | build-openexr2: |
50 | 24 |
|
51 | 25 | runs-on: macos-latest |
@@ -197,39 +171,7 @@ jobs: |
197 | 171 | - name: Build |
198 | 172 | # Build your program with the given configuration |
199 | 173 | run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
200 | | - |
201 | | - test-openexr-brew: |
202 | | - |
203 | | - runs-on: macos-latest |
204 | | - |
205 | | - steps: |
206 | | - |
207 | | - - name: install libtiff |
208 | | - run: brew install libtiff |
209 | | - |
210 | | - - name: install openexr |
211 | | - run: brew install openexr |
212 | | - |
213 | | - - name: install aces_container |
214 | | - run: brew install aces_container |
215 | | - |
216 | | - - uses: actions/checkout@v4 |
217 | | - |
218 | | - - name: Configure CMake |
219 | | - # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |
220 | | - # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |
221 | | - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} |
222 | | - |
223 | | - - name: Build |
224 | | - # Build your program with the given configuration |
225 | | - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
226 | | - |
227 | | - - name: Test |
228 | | - working-directory: ${{github.workspace}}/build |
229 | | - # Execute tests defined by the CMake configuration. |
230 | | - # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail |
231 | | - run: ctest -V --output-on-failure |
232 | | - |
| 174 | + |
233 | 175 | test-openexr2: |
234 | 176 |
|
235 | 177 | runs-on: macos-latest |
|
0 commit comments