Skip to content

Commit 0c7939c

Browse files
authored
Merge pull request #1254 from johnhaddon/ciUpdate
CI : Update to GafferHQ/dependencies 5.0.0a3
2 parents b782062 + 8bb26fc commit 0c7939c

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
buildType: RELEASE
4646
containerImage: ghcr.io/gafferhq/build/build:2.0.0
4747
options: .github/workflows/main/options.posix
48-
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/4.0.0/gafferDependencies-4.0.0-Python2-linux.tar.gz
48+
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/5.0.0a3/gafferDependencies-5.0.0a3-Python2-linux.tar.gz
4949
tests: testCore testCorePython testScene testImage testAlembic testUSD testVDB testAppleseed
5050
publish: true
5151

@@ -54,7 +54,7 @@ jobs:
5454
buildType: DEBUG
5555
containerImage: ghcr.io/gafferhq/build/build:2.0.0
5656
options: .github/workflows/main/options.posix
57-
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/4.0.0/gafferDependencies-4.0.0-Python2-linux.tar.gz
57+
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/5.0.0a3/gafferDependencies-5.0.0a3-Python2-linux.tar.gz
5858
tests: testCore testCorePython testScene testImage testAlembic testUSD testVDB testAppleseed
5959
publish: false
6060

@@ -63,7 +63,7 @@ jobs:
6363
buildType: RELEASE
6464
containerImage: ghcr.io/gafferhq/build/build:2.0.0
6565
options: .github/workflows/main/options.posix
66-
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/4.0.0/gafferDependencies-4.0.0-Python3-linux.tar.gz
66+
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/5.0.0a3/gafferDependencies-5.0.0a3-Python2-linux.tar.gz
6767
tests: testCore testCorePython testScene testImage testAlembic testUSD testVDB testAppleseed
6868
publish: true
6969

@@ -72,7 +72,7 @@ jobs:
7272
buildType: RELEASE
7373
containerImage:
7474
options: .github/workflows/main/options.posix
75-
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/4.0.0/gafferDependencies-4.0.0-Python2-osx.tar.gz
75+
dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/5.0.0a3/gafferDependencies-5.0.0a3-Python2-osx.tar.gz
7676
# `testAppleseed` currently omitted due to clashes with system image IO frameworks.
7777
tests: testCore testCorePython testScene testImage testAlembic testUSD testVDB
7878
publish: true

.github/workflows/main/options.posix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ BOOST_LIB_SUFFIX = ""
4545

4646
OPENEXR_INCLUDE_PATH = includes
4747
OIIO_INCLUDE_PATH = includes
48-
OIIO_LIB_PATH = libs
48+
OIIO_LIB_PATH = ""
4949
OSL_INCLUDE_PATH = includes
5050
BLOSC_INCLUDE_PATH = includes
5151
FREETYPE_INCLUDE_PATH = includes + "/freetype2"
@@ -57,7 +57,9 @@ WITH_GL = "1"
5757
GLEW_INCLUDE_PATH = includes + "/GL"
5858

5959
TBB_INCLUDE_PATH = includes
60+
6061
USD_INCLUDE_PATH = includes
62+
USD_LIB_PREFIX = "usd_"
6163

6264
# Renderers
6365
# =========

SConstruct

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1483,6 +1483,9 @@ if testEnv["TEST_LIBPATH"] != "" :
14831483
testEnvLibPath = testEnv["TEST_LIBPATH"] + os.pathsep + testEnvLibPath
14841484
testEnvLibPath = testEnv.subst( testEnvLibPath )
14851485

1486+
if testEnv["PLATFORM"] == "darwin" :
1487+
testEnvLibPath = os.pathsep.join( [ "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Resources/", testEnvLibPath ] )
1488+
14861489
testEnv["ENV"][testEnv["TEST_LIBRARY_PATH_ENV_VAR"]] = os.pathsep.join( [ testEnv["ENV"].get(testEnv["TEST_LIBRARY_PATH_ENV_VAR"], ""), testEnvLibPath ] )
14871490
if testEnv["TEST_LIBRARY_PATH_ENV_VAR"] != libraryPathEnvVar :
14881491
testEnv["ENV"][libraryPathEnvVar] = os.pathsep.join( [ testEnv["ENV"].get(libraryPathEnvVar, ""), testEnvLibPath ] )

0 commit comments

Comments
 (0)