Skip to content

Commit a0721fa

Browse files
committed
Fix deployment matrix
1 parent aaeeca6 commit a0721fa

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build_houdini.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,12 +218,15 @@ jobs:
218218
matrix:
219219
os: ["linux", "windows"]
220220
houdini_product_name: ["houdini", "houdini-py310", "houdini-py39", "houdini-py37"]
221-
houdini_product_version: ["19.5", "20.0", "20.5", "21.0"]
221+
houdini_product_version: ["20.0", "20.5", "21.0"]
222222
exclude:
223223
# - houdini_product_name: "houdini-py39"
224224
# houdini_product_version: "19.5"
225225
# - houdini_product_name: "houdini-py310"
226226
# houdini_product_version: "19.5"
227+
- os: "windows"
228+
houdini_product_name: "houdini-py39"
229+
houdini_product_version: "20.0"
227230
- houdini_product_name: "houdini-py37"
228231
houdini_product_version: "20.0"
229232
- houdini_product_name: "houdini-py310"

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ elseif("$ENV{AR_DCC_NAME}" STREQUAL "MAYA")
184184
message(FATAL_ERROR "Failed to find a compatible Python version.")
185185
endif()
186186
else()
187-
if(EXISTS "${AR_MAYA_USD_SDK_LIB_DIR}/libboost_python311.so")
187+
if(EXISTS "${AR_PYTHON_ROOT}/bin/python3.11")
188188
set(AR_PYTHON_LIB python3.11)
189189
set(AR_PYTHON_LIB_NUMBER python311)
190-
elseif(EXISTS "${AR_MAYA_USD_SDK_LIB_DIR}/libboost_python310.so")
190+
elseif(EXISTS "${AR_PYTHON_ROOT}/bin/python3.10")
191191
set(AR_PYTHON_LIB python3.10)
192192
set(AR_PYTHON_LIB_NUMBER python310)
193193
else()

0 commit comments

Comments
 (0)