Skip to content

Commit 6e7d58f

Browse files
authored
Stress test pipeline: Add placeholder (dotnet#3865)
Merging without normal rules/checks since this PR doesn't contain any changes that affect existing code.
1 parent 523e2ef commit 6e7d58f

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
#################################################################################
2+
# Licensed to the .NET Foundation under one or more agreements. #
3+
# The .NET Foundation licenses this file to you under the MIT license. #
4+
# See the LICENSE file in the project root for more information. #
5+
#################################################################################
6+
7+
# This pipeline runs the stress test suite using the most recent artifacts from
8+
# the CI-SqlClient-Package pipeline.
9+
#
10+
# It runs after every successful run of the following pipelines:
11+
#
12+
# Public project:
13+
# - PR-SqlClient-Package
14+
# - CI-SqlClient-Package
15+
#
16+
# ADO.net project:
17+
# - MDS Main CI-Package
18+
#
19+
# This pipeline definition is mapped to the Stress-SqlClient pipelines:
20+
#
21+
# Public project:
22+
#
23+
# TODO
24+
#
25+
# ADO.net project:
26+
#
27+
# TODO
28+
29+
# Set the pipeline run name to the day-of-year and the daily run counter.
30+
name: $(DayOfYear)$(Rev:rr)
31+
32+
# Do not trigger this pipeline for PRs, commits, or schedules.
33+
pr: none
34+
trigger: none
35+
36+
# Trigger this pipeline after successful runs of each of the following pipelines.
37+
resources:
38+
pipelines:
39+
# The PR-SqlClient-Package pipeline in the Public project.
40+
- pipeline: upstreamPipeline1
41+
project: Public
42+
source: /ADO/PR-SqlClient-Package
43+
trigger: true
44+
# The CI-SqlClient-Package pipeline in the Public project.
45+
- pipeline: upstreamPipeline2
46+
project: Public
47+
source: /ADO/CI-SqlClient-Package
48+
trigger: true
49+
# The MDS Main CI-Package pipeline in the ADO.net project.
50+
- pipeline: upstreamPipeline3
51+
project: ADO.net
52+
source: /Internal CI/MDS Main CI-Package
53+
trigger: true
54+
55+
# Pipeline parameters, visible in the Azure DevOps UI.
56+
parameters:
57+
58+
# The build configuration to use; defaults to Release.
59+
- name: buildConfiguration
60+
displayName: Build Configuration
61+
type: string
62+
default: Release
63+
values:
64+
- Debug
65+
- Release
66+
67+
- name: debug
68+
displayName: Enable debug output
69+
type: boolean
70+
default: false
71+
72+
stages:
73+
- stage: Placeholder
74+
displayName: Placeholder Stage
75+
jobs:
76+
- job: PlaceholderJob
77+
displayName: Placeholder Job
78+
steps:
79+
- script: echo "This is a placeholder stage."
80+
displayName: Placeholder Step

0 commit comments

Comments
 (0)