Skip to content
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
5 changes: 3 additions & 2 deletions scripts/common/install_conanpackages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ else
conan install --requires=$CONANREF --profile:all=${ASWF_CONAN_HOME}/.conan2/profiles_${ASWF_PKG_ORG}/${ASWF_CONAN_CHANNEL} --deployer-folder $1 --deployer=full_deploy
done

# Clean up the Conan download cache
conan cache clean "*" --download
# Clean up the Conan download cache. FIXME: can't seem to get "conan cache clean" to behave.
# conan cache clean "*" --download
rm -rf /tmp/downloads/*

# The full_deploy generator just copies over generated CMake files which may contain absolute paths pointing inside the Conan cache
# in the format:
Expand Down
Loading