Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Bazel Imath version defines #1256

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.0
5.1.1
4 changes: 2 additions & 2 deletions .github/workflows/bazel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Mount bazel cache
- name: Mount Bazel cache
uses: actions/cache@v2
with:
path: "/home/runner/.cache/bazel"
Expand All @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Mount bazel cache
- name: Mount Bazel cache
uses: actions/cache@v2
with:
path: "/home/runner/.cache/bazel"
Expand Down
8 changes: 4 additions & 4 deletions bazel/third_party/Imath.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ generate_header(
name = "ImathConfig.h",
substitutions = {
"@IMATH_INTERNAL_NAMESPACE@": "Imath_3_1",
"@IMATH_LIB_VERSION@": "3.1.4",
"@IMATH_LIB_VERSION@": "3.1.5",
"@IMATH_NAMESPACE_CUSTOM@": "0",
"@IMATH_NAMESPACE@": "Imath",
"@IMATH_PACKAGE_NAME@": "Imath 3.1.4",
"@IMATH_PACKAGE_NAME@": "Imath 3.1.5",
"@IMATH_VERSION_MAJOR@": "3",
"@IMATH_VERSION_MINOR@": "1",
"@IMATH_VERSION_PATCH@": "4",
"@IMATH_VERSION@": "3.1.4",
"@IMATH_VERSION_PATCH@": "5",
"@IMATH_VERSION@": "3.1.5",
"#cmakedefine IMATH_HALF_USE_LOOKUP_TABLE": "#define IMATH_HALF_USE_LOOKUP_TABLE",
"#cmakedefine IMATH_ENABLE_API_VISIBILITY": "#define IMATH_ENABLE_API_VISIBILITY",
"#cmakedefine IMATH_HAVE_LARGE_STACK": "/* #undef IMATH_HAVE_LARGE_STACK */",
Expand Down