Skip to content

Commit 68b44f5

Browse files
committed
test158
Signed-off-by: Cary Phillips <cary@ilm.com>
1 parent bd64367 commit 68b44f5

4 files changed

Lines changed: 42 additions & 43 deletions

File tree

.github/workflows/ci_workflow.yml

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ permissions:
4040

4141
jobs:
4242
linux:
43-
if: false
4443
name: 'Linux.${{ matrix.build}}: ${{ matrix.label }}'
4544
uses: ./.github/workflows/ci_steps.yml
4645
with:
@@ -99,7 +98,6 @@ jobs:
9998
vfx-cy: 2023
10099

101100
macOS:
102-
if: false
103101
name: 'macOS.${{ matrix.build}}: ${{ matrix.label }}'
104102
uses: ./.github/workflows/ci_steps.yml
105103
with:
@@ -162,44 +160,45 @@ jobs:
162160
strategy:
163161
matrix:
164162
include:
165-
# - build: 1
166-
# label: Release
163+
- build: 1
164+
label: Release
167165

168166
- build: 2
169167
label: Debug
170168
build-type: Debug
169+
if: false # TODO: build fails
171170

172-
# - build: 3
173-
# label: static
174-
# BUILD_SHARED_LIBS: 'OFF'
175-
#
176-
# - build: 4
177-
# label: pkgconfig=OFF, testing=OFF
178-
# IMATH_INSTALL_PKG_CONFIG: 'OFF'
179-
# BUILD_TESTING: 'OFF'
180-
# python: 'OFF'
181-
# pybind11: 'OFF'
182-
#
183-
# - build: 5
184-
# label: vfx2022
185-
# os: windows-2019
186-
#
187-
# - build: 6
188-
# label: msys2-mingw32
189-
# msystem: MINGW32
190-
# BUILD_TESTING: 'OFF'
191-
#
192-
# - build: 7
193-
# label: msys2-mingw32, static
194-
# msystem: MINGW32
195-
# BUILD_SHARED_LIBS: 'OFF'
196-
# BUILD_TESTING: 'OFF'
197-
#
198-
# - build: 8
199-
# label: msys2-ucrt64
200-
# msystem: UCRT64
201-
#
202-
# - build: 9
203-
# label: msys2-ucrt64, static
204-
# msystem: UCRT64
205-
# BUILD_SHARED_LIBS: 'OFF'
171+
- build: 3
172+
label: static
173+
BUILD_SHARED_LIBS: 'OFF'
174+
175+
- build: 4
176+
label: pkgconfig=OFF, testing=OFF
177+
IMATH_INSTALL_PKG_CONFIG: 'OFF'
178+
BUILD_TESTING: 'OFF'
179+
python: 'OFF'
180+
pybind11: 'OFF'
181+
182+
- build: 5
183+
label: vfx2022
184+
os: windows-2019
185+
186+
- build: 6
187+
label: msys2-mingw32
188+
msystem: MINGW32
189+
# BUILD_TESTING: 'OFF'
190+
191+
- build: 7
192+
label: msys2-mingw32, static
193+
msystem: MINGW32
194+
BUILD_SHARED_LIBS: 'OFF'
195+
# BUILD_TESTING: 'OFF'
196+
197+
- build: 8
198+
label: msys2-ucrt64
199+
msystem: UCRT64
200+
201+
- build: 9
202+
label: msys2-ucrt64, static
203+
msystem: UCRT64
204+
BUILD_SHARED_LIBS: 'OFF'

src/python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ if(BUILD_TESTING)
3838
add_subdirectory( PyImathPythonTest )
3939
add_subdirectory( PyImathTest )
4040
add_subdirectory( PyImathSpeedTest )
41-
# add_subdirectory( PyImathNumpyTest )
41+
add_subdirectory( PyImathNumpyTest )
4242
endif()
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# SPDX-License-Identifier: BSD-3-Clause
22
# Copyright Contributors to the OpenEXR Project.
33

4-
add_test(PyImath.PyImathNumpyTest_Python3
4+
add_test(PyImath.PyImathNumpyTest
55
${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/pyImathNumpyTest.in
66
)
77

8-
set_tests_properties(PyImath.PyImathNumpyTest_Python3 PROPERTIES
8+
set_tests_properties(PyImath.PyImathNumpyTest PROPERTIES
99
ENVIRONMENT "PYTHONPATH=${CMAKE_BINARY_DIR}/python${Python3_VERSION_MAJOR}_${Python3_VERSION_MINOR}"
1010
)
1111

src/python/PyImathTest/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ else()
2525

2626
add_executable(PyImathTestC ${PYIMATH_TEST_SOURCES})
2727

28-
add_test(PyImath.PyImathTest_Python3
28+
add_test(PyImath.PyImathTest
2929
${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/pyImathTest.in
3030
)
3131

3232
message (STATUS "PYTHONPATH=${CMAKE_BINARY_DIR}/python${Python3_VERSION_MAJOR}_${Python3_VERSION_MINOR}")
3333

34-
set_tests_properties(PyImath.PyImathTest_Python3 PROPERTIES
34+
set_tests_properties(PyImath.PyImathTest PROPERTIES
3535
ENVIRONMENT "PYTHONPATH=${CMAKE_BINARY_DIR}/python${Python3_VERSION_MAJOR}_${Python3_VERSION_MINOR}"
3636
)
3737

0 commit comments

Comments
 (0)