Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7294918
Update vcpkg SHA (#5757)
antkmsft Jul 2, 2024
a7ce5b4
Sync eng/common directory with azure-sdk-tools for PR 8528 (#5755)
azure-sdk Jul 3, 2024
5251c27
Sync eng/common directory with azure-sdk-tools for PR 8516 (#5752)
azure-sdk Jul 3, 2024
8b39000
Sync eng/common directory with azure-sdk-tools for PR 8549 (#5762)
azure-sdk Jul 3, 2024
2e4e87f
Disable codeql as it is causing build issues (#5761)
weshaggard Jul 3, 2024
32250ea
Delete eng/common/InterdependencyGraph.html which is unused. (#5763)
azure-sdk Jul 5, 2024
8f26ebb
Add missing include (#5766)
rschu1ze Jul 8, 2024
0e6b920
Update GitHubEventProcessor version to 1.0.0-dev.20240708.1 (#5768)
azure-sdk Jul 8, 2024
de7197d
Provide a walkthrough for how to install the Azure SDK packages in a …
ahsonkhan Jul 8, 2024
bc547c4
Sync eng/common directory with azure-sdk-tools for PR 8558 (#5764)
azure-sdk Jul 8, 2024
b1207fc
add the ability to override default succeeded() conditioning by param…
azure-sdk Jul 10, 2024
1143b6b
Support regex/negative regex filters for stress test discovery. Add s…
azure-sdk Jul 11, 2024
22f5135
Update vcpkg SHA (#5772)
antkmsft Jul 11, 2024
69ce3d7
Show-FailureLogs to include vcpkg build failure logs (#5776)
antkmsft Jul 11, 2024
aadeca2
Turn federated auth on for Identity tests. (#5785)
ahsonkhan Jul 12, 2024
313fb0e
Move tests to use azure pipeline credentials (#5754)
gearama Jul 12, 2024
9ccd206
Update the RetryPolicy for the GA release, keeping ShouldRetry extens…
ahsonkhan Jul 12, 2024
e8c7c55
Azure Core July GA Release (#5792)
antkmsft Jul 12, 2024
6b9e1cc
Revert commits related to the new RetryPolicy method (#5793)
antkmsft Jul 12, 2024
ae14b41
Sync eng/common directory with azure-sdk-tools for PR 8598 (#5777)
azure-sdk Jul 12, 2024
fb6c039
Increment package version after release of azure-core (#5794)
azure-sdk Jul 12, 2024
e47e316
Acknowledge community contribution in the changelog (#5797)
antkmsft Jul 15, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/event-processor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: >
dotnet tool install
Azure.Sdk.Tools.GitHubEventProcessor
--version 1.0.0-dev.20240610.2
--version 1.0.0-dev.20240708.1
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
--global
shell: bash
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
run: >
dotnet tool install
Azure.Sdk.Tools.GitHubEventProcessor
--version 1.0.0-dev.20240610.2
--version 1.0.0-dev.20240708.1
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
--global
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-event-processor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: >
dotnet tool install
Azure.Sdk.Tools.GitHubEventProcessor
--version 1.0.0-dev.20240610.2
--version 1.0.0-dev.20240708.1
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
--global
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,13 @@
"rehydrated",
"Reitz",
"retriable",
"rschu",
"rtti",
"rwxrw",
"sasia",
"sbom",
"Schonberger",
"Schulze",
"scus",
"SDDL",
"sdpath",
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ vcpkg add port azure-identity-cpp azure-storage-blobs-cpp
}
```

### Configure project files
### Configure CMake project files

- Replace the contents of `CMakeLists.txt` with the following:

Expand All @@ -57,6 +57,12 @@ add_executable(HelloWorld helloworld.cpp)
target_link_libraries(HelloWorld PRIVATE Azure::azure-identity Azure::azure-storage-blobs)
```

### Installing Azure SDK packages in a Visual Studio MSBuild (.vcxproj) project

Here's a walkthrough video on how to install the Azure SDK packages, using vcpkg, into an MSBuild project in VS: https://aka.ms/azsdk/cpp/gettingstarted-vcpkg-msbuild-video

See the [vcpkg documentation](https://learn.microsoft.com/en-us/vcpkg/get_started/get-started-msbuild?pivots=shell-cmd) for more details.

### Additional methods for installing and configuring

<!-- Commenting out for now until we know if something similar already exists or if we have to create it. -->
Expand Down
2 changes: 1 addition & 1 deletion cmake-modules/AzureVcpkg.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ macro(az_vcpkg_integrate)
message("AZURE_SDK_DISABLE_AUTO_VCPKG is not defined. Fetch a local copy of vcpkg.")
# GET VCPKG FROM SOURCE
# User can set env var AZURE_SDK_VCPKG_COMMIT to pick the VCPKG commit to fetch
set(VCPKG_COMMIT_STRING 8150939b69720adc475461978e07c2d2bf5fb76e) # default SDK tested commit
set(VCPKG_COMMIT_STRING 5312e9f976e89b256954f571433e34f783dd2d12) # default SDK tested commit
if(DEFINED ENV{AZURE_SDK_VCPKG_COMMIT})
message("AZURE_SDK_VCPKG_COMMIT is defined. Using that instead of the default.")
set(VCPKG_COMMIT_STRING "$ENV{AZURE_SDK_VCPKG_COMMIT}") # default SDK tested commit
Expand Down
Loading