You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ci] Don't stop emulator on test agents that won't get reused. (#8005)
The "stop emulator" step on CI generally takes ~35-40 seconds.
However, our Mac agents are public images that are not reused, so there is no benefit to cleaning up after ourselves.
Create a new parameter called `macTestAgentsUseCleanImages` and don't bother stopping the emulator if it set to true. (We currently only run emulators on Macs.)
Copy file name to clipboardExpand all lines: build-tools/automation/azure-pipelines.yaml
+8-3
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,8 @@ parameters:
35
35
- name: provisionatorChannel
36
36
type: string
37
37
default: latest # Support for launching a build against a Provisionator PR (e.g., pr/[github-account-name]/[pr-number]) as a means to test in-progress Provisionator changes
38
+
- name: macTestAgentsUseCleanImages # Test agents we do not need to clean up when finished because they are not reused
0 commit comments