Skip to content

Commit b975d25

Browse files
authored
[release/2.1] Convert to 1es pipelines (#54628)
* Remove CodeQL, CG * Convert to 1es pipelines * Cleanup * Resource * Path * Print contents of dir * Pwsh * Different task * Pwsh again * Fix download
1 parent 5599953 commit b975d25

File tree

4 files changed

+461
-519
lines changed

4 files changed

+461
-519
lines changed

.azure/pipelines/ci-public.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Configure which branches trigger builds
2+
trigger:
3+
batch: true
4+
branches:
5+
include:
6+
- release/2.*
7+
- internal/release/2.*
8+
9+
# Run PR validation on all branches
10+
pr:
11+
branches:
12+
include:
13+
- '*'
14+
15+
variables:
16+
- name: ASPNETCORE_TEST_LOG_MAXPATH
17+
value: "200" # Keep test log file name length low enough for artifact zipping
18+
- name: DOTNET_HOME
19+
value: $(Agent.BuildDirectory)/.dotnet
20+
- name: TeamName
21+
value: AspNetCore
22+
- name: BuildNumberArg
23+
value: ''
24+
25+
jobs:
26+
- template: jobs/default-build.yml
27+
parameters:
28+
jobName: Windows_Build
29+
jobDisplayName: "Build and test: Windows"
30+
buildArgs: $(BuildNumberArg)
31+
codeSign: true
32+
beforeBuild:
33+
- powershell: "& ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1"
34+
displayName: Setup IISExpress test certificates

0 commit comments

Comments
 (0)