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

gz-rendering9+: build without -DSKIP_optix #1161

Merged
merged 2 commits into from
Aug 14, 2024
Merged
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
6 changes: 5 additions & 1 deletion jenkins-scripts/docker/gz_rendering-compilation.bash
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ fi
export GPU_SUPPORT_NEEDED=true
export GZDEV_PROJECT_NAME="gz-rendering${GZ_RENDERING_MAJOR_VERSION}"

export BUILDING_EXTRA_CMAKE_PARAMS+=" -DSKIP_optix=true"
# set SKIP_optix=true for Harmonic and earlier
# not needed for ionic since https://github.com/gazebosim/gz-rendering/pull/1032
if [[ ${GZ_RENDERING_MAJOR_VERSION} -le 8 ]]; then
export BUILDING_EXTRA_CMAKE_PARAMS+=" -DSKIP_optix=true"
fi

. ${SCRIPT_DIR}/lib/generic-building-base.bash