Skip to content

Commit

Permalink
Fix H20.5 CI CXX ABI Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Oct 10, 2024
1 parent 287ed84 commit 5b4f496
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/houdini.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def install_sidefx_product(product, version):
if sidefx_platform == "linux":
for release in releases_list:
# Switch to new gcc version starting with H20
if release["version"] == "20.0":
if float(release["version"]) >= 20.0:
if not release["platform"].endswith("gcc11.2"):
continue
target_release = release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_houdini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:

build_linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
environment: houdini
strategy:
matrix:
Expand Down

0 comments on commit 5b4f496

Please sign in to comment.