Add Versions of various tools (#6313)

* try1

* xcode

* ddgf

* gfd

* gfdd

* clang

* cspell

* Update eng/pipelines/templates/jobs/ci.tests.yml

Co-authored-by: Daniel Jurek <djurek@microsoft.com>

* update vcpkg version after install

* tabs

* sfds

* fsd

* gdf

* gdf

* dfs

* fsd

* hfg

* fds

---------

Co-authored-by: Daniel Jurek <djurek@microsoft.com>
This commit is contained in:
gearama 2025-01-09 12:59:46 -08:00 committed by GitHub
parent dd69357281
commit 8839b4bbf3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 21 additions and 0 deletions

1
.vscode/cspell.json vendored
View File

@ -294,6 +294,7 @@
"xbox",
"Xclang",
"xcode",
"xcodebuild",
"XSMB",
"zulu"
],

View File

@ -127,6 +127,14 @@ jobs:
)
displayName: Set Xcode version
- pwsh: /usr/bin/xcodebuild -version
condition: >-
and(
succeeded(),
eq(variables['Agent.OS'], 'Darwin')
)
displayName: Xcode version
- template: /eng/pipelines/templates/steps/vcpkg.yml
# Validate all the files are formatted correctly according to the

View File

@ -15,6 +15,10 @@ steps:
workingDirectory: build
displayName: cmake --version
- script: clang --version
workingDirectory: build
displayName: clang --version
- script: |
${{ parameters.Env }} cmake ${{ parameters.VcpkgArgs }} ${{ parameters.GenerateArgs }} ..
workingDirectory: build

View File

@ -3,6 +3,14 @@ steps:
Write-Host "##vso[task.setvariable variable=VCPKG_BINARY_SOURCES_SECRET;issecret=true;]clear;x-azblob,https://cppvcpkgcache.blob.core.windows.net/public-vcpkg-container,,read"
Write-Host "##vso[task.setvariable variable=X_VCPKG_ASSET_SOURCES_SECRET;issecret=true;]clear;x-azurl,https://cppvcpkgcache.blob.core.windows.net/public-vcpkg-container,,read"
displayName: Set Vcpkg Variables
- script: vcpkg --version
condition: >-
and(
succeeded(),
not(eq(variables['Agent.OS'], 'Darwin'))
)
displayName: vcpkg --version
- ${{if and(eq(variables['System.TeamProject'], 'internal'), ne(variables['Build.Reason'], 'PullRequest')) }}:
- task: AzurePowerShell@5