Skip to content
Open
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
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:

runs-on: ${{ matrix.os }}

container: ${{ matrix.containerImage }}
container:
image: ${{ matrix.containerImage }}
volumes:
# Mount the `/usr` directory from the host so we can clean it up
# in "Install toolchain (Linux)".
- /usr:/hostVolume/usr

env:
DEPENDENCIES_BUILD_DIR: "./build"
Expand All @@ -58,6 +63,8 @@ jobs:

- name: Install toolchain (Linux)
run: |
# Clear space on runner by deleting stuff we don't need from the host VM.
rm -rf /hostVolume/usr/lib/jvm /hostVolume/usr/local/lib/android
# The Docker container configures bash shells such that they enable the
# software collections we want. If we could set GitHub's
# `defaults.run.shell` to `bash` then all our build steps would pick up
Expand Down
2 changes: 1 addition & 1 deletion Boost/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"downloads" : [

"https://archives.boost.io/release/1.82.0/source/boost_1_82_0.tar.gz"
"https://archives.boost.io/release/1.85.0/source/boost_1_85_0.tar.gz"

],

Expand Down
14 changes: 14 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
11.x.x (relative to 10.x.x)
------

- Boost : Updated to version 1.85.0.
- Cortex : Updated to version 10.6.2.1.
- Imath : Updated to version 3.1.12.
- LLVM : Updated to version 17.0.6.
- OpenColorIO : Updated to version 2.4.2.
- OpenEXR : Updated to version 3.3.6.
- OpenShadingLanguage : Updated to version 1.14.8.0.
- PySide : Updated to version 6.5.8.
- Python : Updated to version 3.11.14.
- Qt : Updated to version 6.5.8.

10.0.0 (relative to 9.1.0)
------

Expand Down
2 changes: 1 addition & 1 deletion Cortex/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"downloads" : [

"https://github.com/ImageEngine/cortex/archive/refs/tags/10.6.0.0.tar.gz"
"https://github.com/ImageEngine/cortex/archive/refs/tags/10.6.2.1.tar.gz"

],

Expand Down
2 changes: 1 addition & 1 deletion Imath/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"downloads" : [

"https://github.com/AcademySoftwareFoundation/Imath/archive/refs/tags/v3.1.11.tar.gz"
"https://github.com/AcademySoftwareFoundation/Imath/archive/refs/tags/v3.1.12.tar.gz"

],

Expand Down
6 changes: 3 additions & 3 deletions LLVM/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

"downloads" : [

"https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-15.0.7.src.tar.xz",
"https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/clang-15.0.7.src.tar.xz",
"https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/cmake-15.0.7.src.tar.xz"
"https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/llvm-17.0.6.src.tar.xz",
"https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/clang-17.0.6.src.tar.xz",
"https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/cmake-17.0.6.src.tar.xz"

],

Expand Down
2 changes: 1 addition & 1 deletion OpenColorIO/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"downloads" : [

"https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v2.3.2.tar.gz",
"https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v2.4.2.tar.gz",
"https://github.com/imageworks/OpenColorIO-Configs/archive/v1.0_r2.tar.gz",

],
Expand Down
2 changes: 1 addition & 1 deletion OpenEXR/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"downloads" : [

"https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v3.2.4.tar.gz"
"https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v3.3.6.tar.gz"

],

Expand Down
2 changes: 1 addition & 1 deletion OpenShadingLanguage/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"downloads" : [

"https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/archive/refs/tags/v1.14.5.1.tar.gz"
"https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/archive/refs/tags/v1.14.8.0.tar.gz"

],

Expand Down
12 changes: 0 additions & 12 deletions OpenShadingLanguage/patches/batchedLinkingFix.patch

This file was deleted.

2 changes: 1 addition & 1 deletion PySide/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"downloads" : [

"https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-6.5.6-src/pyside-setup-opensource-src-6.5.6.tar.xz"
"https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-6.5.8-src/pyside-setup-opensource-src-6.5.8.tar.xz"

],

Expand Down
2 changes: 1 addition & 1 deletion Python/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{

"downloads" : [ "https://www.python.org/ftp/python/3.11.12/Python-3.11.12.tgz" ],
"downloads" : [ "https://www.python.org/ftp/python/3.11.14/Python-3.11.14.tgz" ],

"publicVariables" : {

Expand Down
4 changes: 2 additions & 2 deletions Qt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

"downloads" : [

"https://download.qt.io/official_releases/qt/6.5/6.5.6/src/single/qt-everywhere-opensource-src-6.5.6.tar.xz"
"https://download.qt.io/official_releases/qt/6.5/6.5.8/src/single/qt-everywhere-opensource-src-6.5.8.tar.xz"

],

"dependencies" : [ "LibPNG", "LibTIFF", "LibJPEG-Turbo", "FreeType", "LLVM" ],

"url" : "https://www.qt.io",

"license" : "LICENSE.LGPL3",
"license" : "LICENSES/LGPL-3.0-only.txt",

"environment" : {

Expand Down
Loading