forked from f3d-app/f3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'f3d-app:master' into imgui-console-is-rendered-below-sc…
…alar-bar-and-axis-f3d-app#1926
- Loading branch information
Showing
49 changed files
with
6,859 additions
and
2,956 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: 'Set default versions' | ||
description: 'Set default versions of F3D dependencies to install' | ||
outputs: | ||
alembic_version: | ||
value: ${{ steps.set_default_versions.outputs.alembic_version }} | ||
alembic_min_version: | ||
value: ${{ steps.set_default_versions.outputs.alembic_min_version }} | ||
assimp_version: | ||
value: ${{ steps.set_default_versions.outputs.assimp_version }} | ||
assimp_min_version: | ||
value: ${{ steps.set_default_versions.outputs.assimp_min_version }} | ||
draco_version: | ||
value: ${{ steps.set_default_versions.outputs.draco_version }} | ||
draco_min_version: | ||
value: ${{ steps.set_default_versions.outputs.draco_min_version }} | ||
occt_version: | ||
value: ${{ steps.set_default_versions.outputs.occt_version }} | ||
occt_min_version: | ||
value: ${{ steps.set_default_versions.outputs.occt_min_version }} | ||
openexr_version: | ||
value: ${{ steps.set_default_versions.outputs.openexr_version }} | ||
openexr_min_version: | ||
value: ${{ steps.set_default_versions.outputs.openexr_min_version }} | ||
openvdb_version: | ||
value: ${{ steps.set_default_versions.outputs.openvdb_version }} | ||
openvdb_min_version: | ||
value: ${{ steps.set_default_versions.outputs.openvdb_min_version }} | ||
pybind11_version: | ||
value: ${{ steps.set_default_versions.outputs.pybind11_version }} | ||
pybind11_min_version: | ||
value: ${{ steps.set_default_versions.outputs.pybind11_min_version }} | ||
python_version: | ||
value: ${{ steps.set_default_versions.outputs.python_version }} | ||
python_min_version: | ||
value: ${{ steps.set_default_versions.outputs.python_min_version }} | ||
usd_version: | ||
value: ${{ steps.set_default_versions.outputs.usd_version }} | ||
usd_min_version: | ||
value: ${{ steps.set_default_versions.outputs.usd_min_version }} | ||
java_version: | ||
value: ${{ steps.set_default_versions.outputs.java_version }} | ||
java_min_version: | ||
value: ${{ steps.set_default_versions.outputs.java_min_version }} | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
|
||
# Alembic is part of VFX reference platform (CY2025: 1.8.x) | ||
# OpenEXR is part of VFX reference platform (CY2025: 3.3.x) | ||
# OpenVDB is part of VFX reference platform (CY2025: 12.x) | ||
# OpenVDB min version is not enforced by F3D code and missing from VTK code | ||
# Python is part of VFX reference platform (CY2025: 3.11) | ||
- name: Set default versions output | ||
id: set_default_versions | ||
shell: bash | ||
run: | | ||
echo "alembic_version=1.8.8" >> $GITHUB_OUTPUT | ||
echo "alembic_min_version=1.8.5" >> $GITHUB_OUTPUT | ||
echo "assimp_version=v5.4.3" >> $GITHUB_OUTPUT | ||
echo "assimp_min_version=v5.4.0" >> $GITHUB_OUTPUT | ||
echo "draco_version=1.5.7" >> $GITHUB_OUTPUT | ||
echo "draco_min_version=1.5.6" >> $GITHUB_OUTPUT | ||
echo "occt_version=V7_8_1" >> $GITHUB_OUTPUT | ||
echo "occt_min_version=V7_6_3" >> $GITHUB_OUTPUT | ||
echo "openexr_version=v3.3.2" >> $GITHUB_OUTPUT | ||
echo "openexr_min_version=v3.0.1" >> $GITHUB_OUTPUT | ||
echo "openvdb_version=v12.0.0" >> $GITHUB_OUTPUT | ||
echo "openvdb_min_version=v12.0.0" >> $GITHUB_OUTPUT | ||
echo "pybind11_version=v2.13.6" >> $GITHUB_OUTPUT | ||
echo "pybind11_min_version=v2.9.2" >> $GITHUB_OUTPUT | ||
echo "python_version=3.11" >> $GITHUB_OUTPUT | ||
echo "python_min_version=3.9" >> $GITHUB_OUTPUT | ||
echo "usd_version=v24.11" >> $GITHUB_OUTPUT | ||
echo "usd_min_version=v24.08" >> $GITHUB_OUTPUT | ||
echo "java_version=21" >> $GITHUB_OUTPUT | ||
echo "java_min_version=17" >> $GITHUB_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.