Skip to content
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
15 changes: 14 additions & 1 deletion .github/workflows/docker-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
--version ${{ matrix.common_version }}\
--push NO

- name: Build base1 system wrapper and level 1 Conan packages
- name: Build base1 system wrapper packages
run: |
set -ex
pipenv run aswfdocker \
Expand All @@ -129,6 +129,19 @@ jobs:
build \
--ci-image-type PACKAGE \
--group base1-wrappers \
--version ${{ matrix.version_noclang }} \
--use-conan \
--build-missing

- name: Build base1 level 1 Conan packages
run: |
set -ex
pipenv run aswfdocker \
--repo-uri $GITHUB_REPOSITORY \
--source-branch $GITHUB_REF \
--verbose \
build \
--ci-image-type PACKAGE \
--group base1-1 \
--version ${{ matrix.version_noclang }} \
--use-conan \
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

All notable changes to this project will be documented in this file.

# 2025-05-04

- 2025.1 images
- transition to oneTBB 2021.13.0
- support for Conan Center Index style config.yml to support separate recipes per package version
- common images much slimmer, no longer include the following CUDA components
- #183: Nsight Compute profiler
- libcublas-devel-x-y
- libcusparse-devel-x-y
- libcufft-devel-x-y
- libnpp-devel-x-y
- libcusolver-devel-x-y
- leverage [new NVIDIA repo](https://github.com/NVIDIA/optix-dev) to install OptiX headers
- #255: fix build depenedency between tcl and tk wrappers
- partio build correctly sets C++ standard
- OpenSubDiv build preserves static libraries since its CMake files expect both static and dynamic libs to be present
- Version updates
- CMake 3.31.7 (was 3.31.6)
- CUDA 12.6.3 (was 12.6.1)
- oneTBB 2021.13.0 (was 2020_u3)
- OpenImageIO 3.0.6.1 (was 3.0.5.0)
- OpenShadingLanguage 1.14.5.1 (was 1.14.5.0)
- Optix 9.0 headers (previous most recent was 8.1)
- PartIO 1.19.0 (was 1.17.3)
- USD 25.05 (was 25.02a.eae7e67)

# 2025-04-08

- 2025.0 images
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,8 @@ aswfdocker release -t PACKAGE -g common -v 1-clang6 -v 1-clang7 -v 1-clang8 -v 1
aswfdocker release -t IMAGE -g common -v 1-clang6 -v 1-clang7 -v 1-clang8 -v 1-clang9 -v 1-clang10 -v 2-clang10 -v 2-clang11 -v 2-clang12 -v 2-clang13-v 2-clang14 -v 3-clang14 -v 3-clang15 -v 4-clang16 -v 4-clang17 -v 5-clang18 -v 5-clang19 --docker-org aswf -m "RELEASE_NOTES!"

# Base packages
aswfdocker release -t PACKAGE -g base1-wrappers -g base1-1 -v 2018 -v 2019 -v 2020 -v 2021 -v 2022 -v 2023 -v 2024 -v 2025 --docker-org aswf -m "RELEASE_NOTES!"
aswfdocker release -t PACKAGE -g base1-wrappers -v 2018 -v 2019 -v 2020 -v 2021 -v 2022 -v 2023 -v 2024 -v 2025 --docker-org aswf -m "RELEASE_NOTES!"
aswfdocker release -t PACKAGE -g base1-1 -v 2018 -v 2019 -v 2020 -v 2021 -v 2022 -v 2023 -v 2024 -v 2025 --docker-org aswf -m "RELEASE_NOTES!"
aswfdocker release -t PACKAGE -g base1-2 -v 2018 -v 2019 -v 2020 -v 2021 -v 2022 -v 2023 -v 2024 -v 2025 --docker-org aswf -m "RELEASE_NOTES!"
aswfdocker release -t PACKAGE -g base1-3 -v 2018 -v 2019 -v 2020 -v 2021 -v 2022 -v 2023 -v 2024 -v 2025 --docker-org aswf -m "RELEASE_NOTES!"

Expand Down
743 changes: 415 additions & 328 deletions Pipfile.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions ci-base/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions ci-base/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ci-base/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ packages:
- pugixml
- pystring
- snappy
- tbb
- onetbb
- tsl-robin-map
- yaml-cpp
- zlib
Expand Down
10 changes: 5 additions & 5 deletions ci-baseqt/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions ci-baseqt/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ci-baseqt/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ packages:
- pugixml
- pystring
- snappy
- tbb
- onetbb
- tsl-robin-map
- yaml-cpp
- zlib
Expand Down
Loading
Loading