Skip to content

Commit 0c67083

Browse files
authored
Merge branch 'microsoft:master' into master
2 parents 30d9a5a + 69c78cf commit 0c67083

File tree

140 files changed

+1661
-3526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+1661
-3526
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## DO NOT MODIFY THIS FILE MANUALLY. This is part of auto-baselining from 1ES Pipeline Templates. Go to [https://aka.ms/1espt-autobaselining] for more details.
2+
3+
pipelines:
4+
98194:
5+
retail:
6+
source:
7+
credscan:
8+
lastModifiedDate: 2023-12-06
9+
eslint:
10+
lastModifiedDate: 2023-12-06
11+
psscriptanalyzer:
12+
lastModifiedDate: 2023-12-06
13+
armory:
14+
lastModifiedDate: 2023-12-06

.config/tsaoptions.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"instanceUrl": "https://microsoft.visualstudio.com",
3+
"projectName": "os",
4+
"areaPath": "OS\\Windows Client and Services\\WinPD\\DEEP-Developer Experience, Ecosystem and Partnerships\\AmUse- App Metadata and User Setup Experience\\Projections\\Cppwinrt",
5+
"notificationAliases": [ "[email protected]" ],
6+
"ignoreBranchName": true,
7+
"codebaseName": "cppwinrt"
8+
}

.gdn/.gdnsettings

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"files": { },
3+
"folders": { },
4+
"overwriteLogs": true,
5+
"telemetryFlushTimeout": 10,
6+
"variables": { }
7+
}

.gdn/.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Ignore Guardian internal files
2+
.r/
3+
rc/
4+
rs/
5+
i/
6+
p/
7+
c/
8+
o/
9+
10+
## Ignore Guardian Local settings
11+
LocalSettings.gdn.json

.github/actions/setup-llvm-mingw/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
- name: Cache llvm-mingw (Windows)
2020
id: cache-llvm
2121
if: runner.os == 'Windows'
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: .llvm-mingw
2525
key: llvm-mingw-${{ runner.os }}-${{ inputs.llvm-mingw-version }}-${{ inputs.host-arch }}
@@ -50,7 +50,7 @@ runs:
5050
- name: Cache llvm-mingw (Linux)
5151
id: cache-llvm-linux
5252
if: runner.os == 'Linux'
53-
uses: actions/cache@v3
53+
uses: actions/cache@v4
5454
with:
5555
path: /opt/llvm-mingw
5656
key: llvm-mingw-${{ runner.os }}-${{ inputs.llvm-mingw-version }}-${{ inputs.host-arch }}

.github/actions/setup-llvm-msvc/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inputs:
44
llvm-version:
55
description: 'LLVM version'
66
required: true
7-
default: '15.0.5'
7+
default: '17.0.5'
88
outputs:
99
llvm-path:
1010
description: "The path in which LLVM is installed to"
@@ -14,7 +14,7 @@ runs:
1414
steps:
1515
- name: Cache LLVM and tools
1616
id: cache-llvm
17-
uses: actions/cache@v3
17+
uses: actions/cache@v4
1818
with:
1919
path: |
2020
.LLVM

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "cargo"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

.github/workflows/ci.yml

+23-36
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,7 @@ jobs:
2323
config: Release
2424
runs-on: windows-latest
2525
steps:
26-
- uses: actions/checkout@v3
27-
28-
- id: setup-llvm
29-
name: Set up LLVM (MSVC)
30-
uses: ./.github/actions/setup-llvm-msvc
31-
if: matrix.compiler == 'clang-cl'
26+
- uses: actions/checkout@v4
3227

3328
- name: Download nuget
3429
run: |
@@ -49,7 +44,7 @@ jobs:
4944
$target_version = "1.2.3.4"
5045
$props = "Configuration=$target_configuration,Platform=$target_platform,CppWinRTBuildVersion=$target_version"
5146
if ("${{ matrix.compiler }}" -eq "clang-cl") {
52-
$props += ",Clang=1,PlatformToolset=LLVM_v143,LLVMInstallDir=${{ steps.setup-llvm.outputs.llvm-path }}"
47+
$props += ",Clang=1,PlatformToolset=ClangCl"
5348
}
5449
Add-Content $env:GITHUB_ENV "msbuild_config_props=/p:$props"
5550
@@ -71,9 +66,9 @@ jobs:
7166
cmd /c "$env:VSDevCmd" "&" msbuild /m /clp:ForceConsoleColor "$env:msbuild_config_props" cppwinrt.sln /t:cppwinrt
7267
7368
- name: Upload built executables
74-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7570
with:
76-
name: msvc-build-${{ matrix.arch }}-${{ matrix.config }}-bin
71+
name: msvc-build-${{ matrix.compiler}}-${{ matrix.arch }}-${{ matrix.config }}-bin
7772
path: |
7873
_build/${{ matrix.arch }}/${{ matrix.config }}/*.exe
7974
_build/${{ matrix.arch }}/${{ matrix.config }}/*.dll
@@ -107,25 +102,20 @@ jobs:
107102
config: Release
108103
runs-on: windows-latest
109104
steps:
110-
- uses: actions/checkout@v3
111-
112-
- id: setup-llvm
113-
name: Set up LLVM (MSVC)
114-
uses: ./.github/actions/setup-llvm-msvc
115-
if: matrix.compiler == 'clang-cl'
105+
- uses: actions/checkout@v4
116106

117107
- name: Fetch cppwinrt executables
118108
if: matrix.arch != 'arm64'
119-
uses: actions/download-artifact@v3
109+
uses: actions/download-artifact@v4
120110
with:
121-
name: msvc-build-${{ matrix.arch }}-${{ matrix.config }}-bin
111+
name: msvc-build-${{ matrix.compiler}}-${{ matrix.arch }}-${{ matrix.config }}-bin
122112
path: _build/${{ matrix.arch }}/${{ matrix.config }}/
123113

124114
- name: Fetch x86 cppwinrt executables (arm64 only)
125115
if: matrix.arch == 'arm64'
126-
uses: actions/download-artifact@v3
116+
uses: actions/download-artifact@v4
127117
with:
128-
name: msvc-build-x86-Release-bin
118+
name: msvc-build-${{ matrix.compiler}}-x86-Release-bin
129119
path: _build/x86/Release/
130120

131121
- name: Download nuget
@@ -147,7 +137,7 @@ jobs:
147137
$target_version = "1.2.3.4"
148138
$props = "Configuration=$target_configuration,Platform=$target_platform,CppWinRTBuildVersion=$target_version"
149139
if ("${{ matrix.compiler }}" -eq "clang-cl") {
150-
$props += ",Clang=1,PlatformToolset=LLVM_v143,LLVMInstallDir=${{ steps.setup-llvm.outputs.llvm-path }}"
140+
$props += ",Clang=1,PlatformToolset=ClangCl"
151141
}
152142
Add-Content $env:GITHUB_ENV "msbuild_config_props=/p:$props"
153143
@@ -240,9 +230,9 @@ jobs:
240230
241231
- name: Upload arm64 test executables
242232
if: matrix.arch == 'arm64'
243-
uses: actions/upload-artifact@v3
233+
uses: actions/upload-artifact@v4
244234
with:
245-
name: msvc-tests-${{ matrix.arch }}-${{ matrix.config }}-bin
235+
name: msvc-tests-${{ matrix.test_exe }}-${{ matrix.compiler }}-${{ matrix.arch }}-${{ matrix.config }}-bin
246236
path: |
247237
_build/${{ matrix.arch }}/${{ matrix.config }}/*.exe
248238
_build/${{ matrix.arch }}/${{ matrix.config }}/*.dll
@@ -260,7 +250,7 @@ jobs:
260250
CMAKE_COLOR_DIAGNOSTICS: 1
261251
CLICOLOR_FORCE: 1
262252
steps:
263-
- uses: actions/checkout@v3
253+
- uses: actions/checkout@v4
264254

265255
- name: Install cross compiler
266256
run: |
@@ -279,7 +269,7 @@ jobs:
279269
cmake --build build/cross_x64/ --target install -j2
280270
281271
- name: Upload cppwinrt.exe
282-
uses: actions/upload-artifact@v3
272+
uses: actions/upload-artifact@v4
283273
with:
284274
name: cross-build-${{ matrix.arch }}-bin
285275
path: install/bin/cppwinrt.exe
@@ -293,7 +283,7 @@ jobs:
293283
Deployment: [Component, Standalone]
294284
runs-on: windows-latest
295285
steps:
296-
- uses: actions/checkout@v3
286+
- uses: actions/checkout@v4
297287

298288
- name: Download nuget
299289
run: |
@@ -323,20 +313,22 @@ jobs:
323313
cmd /c "$env:VSDevCmd" "&" msbuild /m /clp:ForceConsoleColor "$env:msbuild_config_props" /p:Deployment=${{ matrix.Deployment }} natvis\cppwinrtvisualizer.sln
324314
325315
build-msvc-nuget-test:
326-
name: 'Build nuget test'
316+
name: 'Build nuget test (${{ matrix.arch }})'
327317
needs: test-msvc-cppwinrt-build
328318
strategy:
329319
matrix:
320+
compiler:
321+
- MSVC
330322
arch: [x86, x64]
331323
config: [Release]
332324
runs-on: windows-latest
333325
steps:
334-
- uses: actions/checkout@v3
326+
- uses: actions/checkout@v4
335327

336328
- name: Fetch cppwinrt executables
337-
uses: actions/download-artifact@v3
329+
uses: actions/download-artifact@v4
338330
with:
339-
name: msvc-build-${{ matrix.arch }}-${{ matrix.config }}-bin
331+
name: msvc-build-${{ matrix.compiler}}-${{ matrix.arch }}-${{ matrix.config }}-bin
340332
path: _build/${{ matrix.arch }}/${{ matrix.config }}/
341333

342334
- name: Download nuget
@@ -371,17 +363,12 @@ jobs:
371363
- name: Run nuget test
372364
run: |
373365
cmd /c "$env:VSDevCmd" "&" msbuild /m /clp:ForceConsoleColor "$env:msbuild_config_props" test\nuget\NugetTest.sln
374-
if ($LastExitCode -ne 0) {
375-
echo "::warning::nuget test failed"
376-
}
377-
# FIXME: This build was failing from the start
378-
exit 0
379366
380367
build-nuget:
381368
name: Build nuget package with MSVC
382369
runs-on: windows-latest
383370
steps:
384-
- uses: actions/checkout@v3
371+
- uses: actions/checkout@v4
385372

386373
- name: Package
387374
run: |
@@ -396,7 +383,7 @@ jobs:
396383
}
397384
398385
- name: Upload nuget package artifact
399-
uses: actions/upload-artifact@v3
386+
uses: actions/upload-artifact@v4
400387
with:
401388
name: package
402389
path: "*.nupkg"

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414

1515
steps:
16-
- uses: actions/stale@v6
16+
- uses: actions/stale@v9
1717
with:
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}
1919
days-before-stale: 10

.pipelines/OneBranch.Official.yml

+24-57
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,26 @@ extends:
2727
platform:
2828
name: 'windows_undocked'
2929
product: 'build_tools'
30+
31+
featureFlags:
32+
WindowsHostVersion:
33+
Version: 2022
3034

3135
cloudvault:
3236
enabled: false
3337

3438
globalSdl:
39+
isNativeCode: true
40+
asyncSdl:
41+
enabled: true
3542
tsa:
36-
enabled: false
37-
38-
nugetPublishing:
39-
feeds:
40-
name: CppWinRT
43+
enabled: true
44+
codeql:
45+
compiled:
46+
enabled: true
47+
tsaEnabled: true
48+
prefast:
49+
enabled: true
4150

4251
stages:
4352
- stage: build
@@ -72,48 +81,6 @@ extends:
7281
ob_createvpack_metadata: $(Build.SourceBranchName).x86.$(Build.BuildNumber).$(Build.SourceVersion)
7382
ob_createvpack_target: $(OSBuildToolsRoot)\cppwinrt
7483

75-
steps:
76-
- task: UseDotNet@2
77-
continueOnError: true
78-
inputs:
79-
packageType: 'runtime'
80-
version: '6.x'
81-
performMultiLevelLookup: true
82-
83-
- task: DownloadPipelineArtifact@2
84-
displayName: 'Download x86 artifacts'
85-
inputs:
86-
artifactName: 'drop_build_x86'
87-
targetPath: '$(Build.SourcesDirectory)/x86'
88-
89-
- task: CopyFiles@2
90-
displayName: 'Stage compiler vpack contents'
91-
inputs:
92-
SourceFolder: $(Build.SourcesDirectory)/x86
93-
Contents: |
94-
cppwinrt/cppwinrt.exe
95-
cppwinrt/cppwinrt.pdb
96-
TargetFolder: $(ob_outputDirectory)
97-
98-
- job: MSBuild_vpack
99-
pool:
100-
type: windows
101-
variables:
102-
ob_outputDirectory: '$(Build.SourcesDirectory)\out'
103-
104-
ob_createvpack_enabled: true
105-
ob_createvpack_packagename: CppWinRT.MSBuild
106-
ob_createvpack_owneralias: cpp4uwpt
107-
ob_createvpack_description: C++/WinRT MSBuild
108-
ob_createvpack_provData: true
109-
ob_createvpack_versionAs: parts
110-
ob_createvpack_majorVer: $(MajorVersion)
111-
ob_createvpack_minorVer: $(MinorVersion)
112-
ob_createvpack_patchVer: $(PatchVersion)
113-
ob_createvpack_metadata: $(Build.SourceBranchName).$(Build.BuildNumber).$(Build.SourceVersion)
114-
ob_createvpack_verbose: true
115-
ob_createvpack_target: $(OSBuildToolsRoot)\cppwinrt
116-
11784
steps:
11885
- task: UseDotNet@2
11986
continueOnError: true
@@ -134,25 +101,26 @@ extends:
134101
artifactName: 'drop_build_x64'
135102
targetPath: '$(Build.SourcesDirectory)/x64'
136103

137-
- task: DownloadPipelineArtifact@2
138-
displayName: 'Download arm artifacts'
139-
inputs:
140-
artifactName: 'drop_build_arm'
141-
targetPath: '$(Build.SourcesDirectory)/arm'
142-
143104
- task: DownloadPipelineArtifact@2
144105
displayName: 'Download arm64 artifacts'
145106
inputs:
146107
artifactName: 'drop_build_arm64'
147108
targetPath: '$(Build.SourcesDirectory)/arm64'
109+
110+
- task: CopyFiles@2
111+
displayName: 'Stage compiler vpack contents'
112+
inputs:
113+
SourceFolder: $(Build.SourcesDirectory)/x86/cppwinrt
114+
Contents: |
115+
cppwinrt.exe
116+
cppwinrt.pdb
117+
TargetFolder: $(ob_outputDirectory)
148118

149119
- task: CmdLine@2
150120
displayName: 'Stage MSBuild vpack contents'
151121
inputs:
152122
script: |
153123
set TargetDir=$(ob_outputDirectory)
154-
rd /s /q %TargetDir% >nul 2>&1
155-
md %TargetDir%
156124
cd %TargetDir%
157125
158126
copy $(Build.SourcesDirectory)\vsix\Microsoft.Cpp.CppWinRT.props
@@ -163,9 +131,8 @@ extends:
163131
echo d | xcopy $(Build.SourcesDirectory)\x86\cppwinrt_fast_forwarder.lib build\native\lib\Win32
164132
echo d | xcopy $(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib build\native\lib\amd64
165133
echo d | xcopy $(Build.SourcesDirectory)\x64\cppwinrt_fast_forwarder.lib build\native\lib\x64
166-
echo d | xcopy $(Build.SourcesDirectory)\arm\cppwinrt_fast_forwarder.lib build\native\lib\arm
167134
echo d | xcopy $(Build.SourcesDirectory)\arm64\cppwinrt_fast_forwarder.lib build\native\lib\arm64
168-
135+
169136
- stage: NuGet
170137
dependsOn: build
171138
jobs:

0 commit comments

Comments
 (0)