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

Add back package versions to the FolderList.cmake and remove EventHubs from the list for now #4811

Merged
merged 2 commits into from
Jul 20, 2023
Merged
Changes from 1 commit
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
44 changes: 19 additions & 25 deletions cmake-modules/FolderList.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,34 @@ macro(GetFolderList project)
message ("project found ${project}")
message ("FLAG VALUE : ${FETCH_SOURCE_DEPS}")
if(${project} STREQUAL CERTIFICATES)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/identity azure-identity)
DownloadDepVersion(sdk/core azure-core 1.5.0)
DownloadDepVersion(sdk/identity azure-identity 1.1.0)
elseif(${project} STREQUAL IDENTITY)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/core azure-core 1.2.0)
elseif(${project} STREQUAL SECRETS)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/identity azure-identity)
DownloadDepVersion(sdk/core azure-core 1.5.0)
DownloadDepVersion(sdk/identity azure-identity 1.1.0)
elseif(${project} STREQUAL KEYS)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/identity azure-identity)
DownloadDepVersion(sdk/core azure-core 1.5.0)
DownloadDepVersion(sdk/identity azure-identity 1.1.0)
elseif(${project} STREQUAL ADMINISTRATION)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/identity azure-identity)
DownloadDepVersion(sdk/core azure-core 1.5.0)
DownloadDepVersion(sdk/identity azure-identity 1.1.0)
elseif(${project} STREQUAL STORAGE_COMMON)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/core azure-core 1.9.0)
elseif(${project} STREQUAL STORAGE_BLOBS)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common)
DownloadDepVersion(sdk/core azure-core 1.8.0)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1)
elseif(${project} STREQUAL STORAGE_FILES_DATALAKE)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common)
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs)
DownloadDepVersion(sdk/core azure-core 1.8.0)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1)
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.7.0)
elseif(${project} STREQUAL STORAGE_FILES_SHARES)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common)
DownloadDepVersion(sdk/core azure-core 1.9.0)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.2)
elseif(${project} STREQUAL STORAGE_QUEUES)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common)
elseif(${project} STREQUAL EVENTHUBS)
DownloadDepVersion(sdk/core azure-core)
DownloadDepVersion(sdk/core azure-core-amqp)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common)
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs)
elseif(${project} STREQUAL STORAGE_FILES_DATALAKE)
DownloadDepVersion(sdk/core azure-core 1.5.0)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.3)
endif()
list(REMOVE_DUPLICATES BUILD_FOLDERS)
endmacro()
Expand Down
Loading