Skip to content

Commit 919995f

Browse files
committed
Enable ShouldSkipOptimize parameter for more pipelines
1 parent 7255138 commit 919995f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

azure-pipelines/unofficial.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ parameters:
1818
# As an entrypoint pipeline yml file, all parameters here show up in the Queue Run dialog.
1919
# If any paramaters should NOT be queue-time options, they should be removed from here
2020
# and references to them in this file replaced with hard-coded values.
21-
# - name: ShouldSkipOptimize # Uncomment this and references to it below when setting EnableOptProf to true in build.yml.
22-
# displayName: Skip OptProf optimization
23-
# type: boolean
24-
# default: false
21+
- name: ShouldSkipOptimize
22+
displayName: Skip OptProf optimization
23+
type: boolean
24+
default: false
2525
- name: EnableMacOSBuild
2626
displayName: Build on macOS
2727
type: boolean

azure-pipelines/vs-validation.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
trigger: none # We only want to trigger manually or based on resources
66
pr: none
77

8-
# parameters:
9-
# - name: ShouldSkipOptimize # Uncomment this and references to it below when setting EnableOptProf to true in build.yml.
10-
# displayName: Skip OptProf optimization
11-
# type: boolean
12-
# default: false
8+
parameters:
9+
- name: ShouldSkipOptimize
10+
displayName: Skip OptProf optimization
11+
type: boolean
12+
default: false
1313

1414
resources:
1515
repositories:

0 commit comments

Comments
 (0)