From 36895b514eb59ba7daf40dfe3ddd9c5d80a42a12 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Mon, 10 Oct 2022 10:20:34 +0530 Subject: [PATCH 01/12] Update Link.stories.tsx --- apps/vr-tests-react-components/src/stories/Link.stories.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/vr-tests-react-components/src/stories/Link.stories.tsx b/apps/vr-tests-react-components/src/stories/Link.stories.tsx index 9627393c11d62..2b3fe7329caf7 100644 --- a/apps/vr-tests-react-components/src/stories/Link.stories.tsx +++ b/apps/vr-tests-react-components/src/stories/Link.stories.tsx @@ -21,6 +21,8 @@ storiesOf('Link Converged - Rendered as anchor', module) .mouseDown('.fui-Link') .snapshot('pressed', { cropTo: '.testWrapper' }) .mouseUp('.fui-Link') + .focus('.fui-Link') + .snapshot('focused22', { cropTo: '.testWrapper' }) .end()} > {story()} From 6d25b5ad4ce26b2a11aa873d8e03c02d24fa3623 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Mon, 10 Oct 2022 10:57:21 +0530 Subject: [PATCH 02/12] Update Link.stories.tsx --- apps/vr-tests-react-components/src/stories/Link.stories.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/vr-tests-react-components/src/stories/Link.stories.tsx b/apps/vr-tests-react-components/src/stories/Link.stories.tsx index 2b3fe7329caf7..73d380c1c2d29 100644 --- a/apps/vr-tests-react-components/src/stories/Link.stories.tsx +++ b/apps/vr-tests-react-components/src/stories/Link.stories.tsx @@ -21,7 +21,7 @@ storiesOf('Link Converged - Rendered as anchor', module) .mouseDown('.fui-Link') .snapshot('pressed', { cropTo: '.testWrapper' }) .mouseUp('.fui-Link') - .focus('.fui-Link') + .hover('.fui-Link') .snapshot('focused22', { cropTo: '.testWrapper' }) .end()} > From 1722b78da1b9ae16f633360eb32ddca32dcfc165 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Wed, 26 Oct 2022 16:09:43 +0000 Subject: [PATCH 03/12] update --- apps/vr-tests-react-components/convert.sh | 5 ++ apps/vr-tests-react-components/package.json | 5 +- azure-pipelines.vrt-baseline.yml | 52 +++++++++++++++++++++ azure-pipelines.vrt-pr.yml | 48 +++++++++++++++++++ package.json | 2 +- azure-pipelines.yml => tmp.yml | 0 yarn.lock | 33 ++++++++++++- 7 files changed, 142 insertions(+), 3 deletions(-) create mode 100755 apps/vr-tests-react-components/convert.sh create mode 100644 azure-pipelines.vrt-baseline.yml create mode 100644 azure-pipelines.vrt-pr.yml rename azure-pipelines.yml => tmp.yml (100%) diff --git a/apps/vr-tests-react-components/convert.sh b/apps/vr-tests-react-components/convert.sh new file mode 100755 index 0000000000000..f65f3bb7420f2 --- /dev/null +++ b/apps/vr-tests-react-components/convert.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash +set -x +sed -i "s/import.*Screener.*screener'/import { StoryWright, Steps } from 'storywright'/g" src/stories/* +sed -i "s/Screener.Steps/Steps/g" src/stories/* +sed -i "s/Screener/StoryWright/g" src/stories/* diff --git a/apps/vr-tests-react-components/package.json b/apps/vr-tests-react-components/package.json index 66c3ac40876f0..b29ba9d727158 100644 --- a/apps/vr-tests-react-components/package.json +++ b/apps/vr-tests-react-components/package.json @@ -5,6 +5,8 @@ "description": "Visual regression tests for @fluentui/react-components", "scripts": { "build": "build-storybook -o dist/storybook", + "test:component": "storywright --browsers chromium --url dist/storybook --destpath dist/screenshots --waitTimeScreenshot 500 --concurrency 2 --headless true", + "convert": "bash convert.sh", "clean": "just-scripts clean", "format": "prettier . -w --ignore-path ../../.prettierignore", "lint": "just-scripts lint", @@ -14,7 +16,8 @@ "type-check": "tsc" }, "devDependencies": { - "@fluentui/eslint-plugin": "*" + "@fluentui/eslint-plugin": "*", + "storywright": "0.0.23-beta.5" }, "dependencies": { "@fluentui/react-accordion": "^9.0.7", diff --git a/azure-pipelines.vrt-baseline.yml b/azure-pipelines.vrt-baseline.yml new file mode 100644 index 0000000000000..3c541e599f5ea --- /dev/null +++ b/azure-pipelines.vrt-baseline.yml @@ -0,0 +1,52 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: + batch: true + branches: + include: + - master + +variables: + skipComponentGovernanceDetection: true + +pool: + vmImage: ubuntu-latest + +jobs: + - job: VRToolUpdateBaseline + workspace: + clean: all + steps: + - template: .devops/templates/tools.yml + + - task: Bash@3 + inputs: + filePath: yarn-ci.sh + displayName: yarn (install packages) + + - script: | + yarn workspace @fluentui/vr-tests-react-components screener:build + displayName: Build VR tests components package + + - script: | + yarn lage test:component --verbose + displayName: 'Run VR tests' + + - script: | + mkdir -p screenshots + cp -rf apps/vr-tests-react-components/dist/screenshots/*.png screenshots/ + displayName: Collate Artifacts + + - task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: 'screenshots' + ArtifactName: 'vrscreenshot' + publishLocation: 'Container' + + - bash: node packages/screenshotdiff/dist/index.js release --buildId $(Build.BuildId) + displayName: 'Run Screenshotdiff update baseline' + + - template: .devops/templates/cleanup.yml diff --git a/azure-pipelines.vrt-pr.yml b/azure-pipelines.vrt-pr.yml new file mode 100644 index 0000000000000..bbea3b4fa4e96 --- /dev/null +++ b/azure-pipelines.vrt-pr.yml @@ -0,0 +1,48 @@ +pr: + - master + +# There's a separate pipeline for CI which also uses this file, but with a trigger override in the UI +# https://dev.azure.com/uifabric/fabricpublic/_apps/hub/ms.vss-ciworkflow.build-ci-hub?_a=edit-build-definition&id=164&view=Tab_Triggers +trigger: none + +variables: + - ${{ if not(startsWith(variables['Build.SourceBranch'], 'refs/heads/')) }}: + - name: sinceArg + value: --since $(targetBranch) + + - template: .devops/templates/variables.yml + +pool: '1ES-Host-Ubuntu' + +jobs: + - job: TestVRTool + workspace: + clean: all + steps: + - template: .devops/templates/tools.yml + + - task: Bash@3 + inputs: + filePath: yarn-ci.sh + displayName: yarn (install packages) + + - script: | + yarn workspace @fluentui/vr-tests-react-components screener:build + displayName: Build vr tests components package + + - script: | + yarn lage test:component --verbose + displayName: 'Run VR tests' + + - script: | + mkdir -p screenshots + cp -rf apps/vr-tests-react-components/dist/screenshots/*.png screenshots/ + displayName: Collate Artifacts + + - task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: 'screenshots' + ArtifactName: 'vrscreenshot' + publishLocation: 'Container' + + - template: .devops/templates/cleanup.yml diff --git a/package.json b/package.json index cf21f08a59124..6f42db8999832 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "node": "^14.18.1 || ^16.0.0" }, "scripts": { - "build": "lage build --verbose", + "build": "lage build", "build:codesandbox": "yarn build --to @fluentui/react --to @fluentui/react-components", "build:fluentui:docs": "gulp build:docs", "buildci": "lage build test lint type-check --verbose", diff --git a/azure-pipelines.yml b/tmp.yml similarity index 100% rename from azure-pipelines.yml rename to tmp.yml diff --git a/yarn.lock b/yarn.lock index 0ffd9c3a0d8e1..c945632b13b93 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6251,6 +6251,15 @@ "@types/scheduler" "*" csstype "^3.0.2" +"@types/react@^17.0.8": + version "17.0.51" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.51.tgz#ee8ee128b36d360cae2dc7986caa325079e4365c" + integrity sha512-YMddzAE+nSH04BiTJ5GydTxk0/3hckqyuOclg0s6zQYj/XzfRVNzHZAFwZb5SCSavkzTYUtcq/gwjLnvt2Y4cg== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + "@types/read-pkg-up@^6.0.0": version "6.0.0" resolved "https://registry.yarnpkg.com/@types/read-pkg-up/-/read-pkg-up-6.0.0.tgz#7926c93cf14d906e9829a859e790323d0f338684" @@ -22248,6 +22257,18 @@ pkg-up@^4.0.0: dependencies: find-up "^6.2.0" +playwright-core@1.27.1: + version "1.27.1" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.27.1.tgz#840ef662e55a3ed759d8b5d3d00a5f885a7184f4" + integrity sha512-9EmeXDncC2Pmp/z+teoVYlvmPWUC6ejSSYZUln7YaP89Z6lpAaiaAnqroUt/BoLo8tn7WYShcfaCh+xofZa44Q== + +playwright@^1.27.0: + version "1.27.1" + resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.27.1.tgz#4eecac5899566c589d4220ca8acc16abe8a67450" + integrity sha512-xXYZ7m36yTtC+oFgqH0eTgullGztKSRMb4yuwLPl8IYSmgBM88QiB+3IWb1mRIC9/NNwcgbG0RwtFlg+EAFQHQ== + dependencies: + playwright-core "1.27.1" + please-upgrade-node@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" @@ -25575,6 +25596,16 @@ storybook-addon-performance@0.16.1: tiny-invariant "^1.1.0" xstate "^4.22.0" +storywright@0.0.23-beta.5: + version "0.0.23-beta.5" + resolved "https://registry.yarnpkg.com/storywright/-/storywright-0.0.23-beta.5.tgz#7be1f5ef6ebd371d302a6009079e5fb2a0e91c2f" + integrity sha512-9tSmEwBnQH71JI4JbgHrXFEHZaG9yeehtxaFk5vGONKBXpYpgHT4oaV2pQ0qydwJrpbGt36eKFAKFmMZVXa8LQ== + dependencies: + "@types/react" "^17.0.8" + playwright "^1.27.0" + prop-types "^15.6.0" + yargs "^16.2.0" + stream-browserify@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" @@ -26355,7 +26386,7 @@ terser@5.14.2, terser@^5.3.4, terser@^5.5.1, terser@^5.7.2: source-map-support "~0.5.20" terser@^4.1.2, terser@^4.3.9, terser@^4.6.12, terser@^4.6.2, terser@^4.6.3: - version "4.8.1" + version "4.8.0" resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== dependencies: From 2e77e64dafe025d980bdfb9ddbba082f08a001ec Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 04:07:08 +0000 Subject: [PATCH 04/12] revert some changes --- apps/vr-tests-react-components/src/stories/Link.stories.tsx | 2 -- tmp.yml => azure-pipelines.yml | 0 package.json | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) rename tmp.yml => azure-pipelines.yml (100%) diff --git a/apps/vr-tests-react-components/src/stories/Link.stories.tsx b/apps/vr-tests-react-components/src/stories/Link.stories.tsx index 73d380c1c2d29..9627393c11d62 100644 --- a/apps/vr-tests-react-components/src/stories/Link.stories.tsx +++ b/apps/vr-tests-react-components/src/stories/Link.stories.tsx @@ -21,8 +21,6 @@ storiesOf('Link Converged - Rendered as anchor', module) .mouseDown('.fui-Link') .snapshot('pressed', { cropTo: '.testWrapper' }) .mouseUp('.fui-Link') - .hover('.fui-Link') - .snapshot('focused22', { cropTo: '.testWrapper' }) .end()} > {story()} diff --git a/tmp.yml b/azure-pipelines.yml similarity index 100% rename from tmp.yml rename to azure-pipelines.yml diff --git a/package.json b/package.json index 6f42db8999832..cf21f08a59124 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "node": "^14.18.1 || ^16.0.0" }, "scripts": { - "build": "lage build", + "build": "lage build --verbose", "build:codesandbox": "yarn build --to @fluentui/react --to @fluentui/react-components", "build:fluentui:docs": "gulp build:docs", "buildci": "lage build test lint type-check --verbose", From 06071553ead569c90a9f19af73f85951521f5f2a Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 04:20:44 +0000 Subject: [PATCH 05/12] update storywright version --- apps/vr-tests-react-components/package.json | 2 +- yarn.lock | 18 ++++-------------- 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/apps/vr-tests-react-components/package.json b/apps/vr-tests-react-components/package.json index 8c3ee17b78250..cca7429109702 100644 --- a/apps/vr-tests-react-components/package.json +++ b/apps/vr-tests-react-components/package.json @@ -17,7 +17,7 @@ }, "devDependencies": { "@fluentui/eslint-plugin": "*", - "storywright": "0.0.23-beta.5" + "storywright": "0.0.23-beta.6" }, "dependencies": { "@fluentui/react-accordion": "^9.0.9", diff --git a/yarn.lock b/yarn.lock index 3d4d4553b4279..1da940e42cd48 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5909,15 +5909,6 @@ "@types/scheduler" "*" csstype "^3.0.2" -"@types/react@^17.0.8": - version "17.0.51" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.51.tgz#ee8ee128b36d360cae2dc7986caa325079e4365c" - integrity sha512-YMddzAE+nSH04BiTJ5GydTxk0/3hckqyuOclg0s6zQYj/XzfRVNzHZAFwZb5SCSavkzTYUtcq/gwjLnvt2Y4cg== - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - csstype "^3.0.2" - "@types/read-pkg-up@^6.0.0": version "6.0.0" resolved "https://registry.yarnpkg.com/@types/read-pkg-up/-/read-pkg-up-6.0.0.tgz#7926c93cf14d906e9829a859e790323d0f338684" @@ -24304,12 +24295,11 @@ storybook-addon-performance@0.16.1: tiny-invariant "^1.1.0" xstate "^4.22.0" -storywright@0.0.23-beta.5: - version "0.0.23-beta.5" - resolved "https://registry.yarnpkg.com/storywright/-/storywright-0.0.23-beta.5.tgz#7be1f5ef6ebd371d302a6009079e5fb2a0e91c2f" - integrity sha512-9tSmEwBnQH71JI4JbgHrXFEHZaG9yeehtxaFk5vGONKBXpYpgHT4oaV2pQ0qydwJrpbGt36eKFAKFmMZVXa8LQ== +storywright@0.0.23-beta.6: + version "0.0.23-beta.6" + resolved "https://registry.yarnpkg.com/storywright/-/storywright-0.0.23-beta.6.tgz#cf44dadd29caddd51a7b1b6af1074f8efc876f76" + integrity sha512-Kwhk0xlRdy+e8CP21ZueAVSkw0e367MgO2XJPqPdet/RsE+rr4j0VOGA/TjqsHP+G25/FxwZI0UL/6q9alNUfQ== dependencies: - "@types/react" "^17.0.8" playwright "^1.27.0" prop-types "^15.6.0" yargs "^16.2.0" From 583c21b5d3486a104a4ae9edb06ee7efa80c7389 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 04:22:08 +0000 Subject: [PATCH 06/12] rename --- .../{convert.sh => convertStoriesToStoryWright.sh} | 0 apps/vr-tests-react-components/package.json | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename apps/vr-tests-react-components/{convert.sh => convertStoriesToStoryWright.sh} (100%) diff --git a/apps/vr-tests-react-components/convert.sh b/apps/vr-tests-react-components/convertStoriesToStoryWright.sh similarity index 100% rename from apps/vr-tests-react-components/convert.sh rename to apps/vr-tests-react-components/convertStoriesToStoryWright.sh diff --git a/apps/vr-tests-react-components/package.json b/apps/vr-tests-react-components/package.json index cca7429109702..8667403ac24b3 100644 --- a/apps/vr-tests-react-components/package.json +++ b/apps/vr-tests-react-components/package.json @@ -6,7 +6,7 @@ "scripts": { "build": "build-storybook -o dist/storybook", "test:component": "storywright --browsers chromium --url dist/storybook --destpath dist/screenshots --waitTimeScreenshot 500 --concurrency 2 --headless true", - "convert": "bash convert.sh", + "convert": "bash convertStoriesToStoryWright.sh", "clean": "just-scripts clean", "format": "prettier . -w --ignore-path ../../.prettierignore", "lint": "just-scripts lint", From 1fca9e697c4043ed77209ca5fe883be30fc21833 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 04:23:10 +0000 Subject: [PATCH 07/12] rename --- apps/vr-tests-react-components/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/vr-tests-react-components/package.json b/apps/vr-tests-react-components/package.json index 8667403ac24b3..5075d4fc30aa8 100644 --- a/apps/vr-tests-react-components/package.json +++ b/apps/vr-tests-react-components/package.json @@ -5,7 +5,7 @@ "description": "Visual regression tests for @fluentui/react-components", "scripts": { "build": "build-storybook -o dist/storybook", - "test:component": "storywright --browsers chromium --url dist/storybook --destpath dist/screenshots --waitTimeScreenshot 500 --concurrency 2 --headless true", + "test:component": "storywright --browsers chromium --url dist/storybook --destpath dist/screenshots --waitTimeScreenshot 500 --concurrency 4 --headless true", "convert": "bash convertStoriesToStoryWright.sh", "clean": "just-scripts clean", "format": "prettier . -w --ignore-path ../../.prettierignore", From 015c95db89cf10c92eb9ff58e39e310de68bd67d Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 04:28:32 +0000 Subject: [PATCH 08/12] updatE --- ...react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json diff --git a/change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json b/change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json new file mode 100644 index 0000000000000..162931d986980 --- /dev/null +++ b/change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json @@ -0,0 +1,7 @@ +{ + "type": "none", + "comment": "Auto formatting change", + "packageName": "@fluentui/react-persona", + "email": "sunilsurana1986@gmail.com", + "dependentChangeType": "none" +} From bee7554bc339a79e9dc5afd5d7f2cea355f9a06d Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 08:22:09 +0000 Subject: [PATCH 09/12] remove whitespace --- ...react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json diff --git a/change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json b/change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json deleted file mode 100644 index 162931d986980..0000000000000 --- a/change/@fluentui-react-persona-6bd04196-9917-4b2e-ae05-25fcb0978175.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "none", - "comment": "Auto formatting change", - "packageName": "@fluentui/react-persona", - "email": "sunilsurana1986@gmail.com", - "dependentChangeType": "none" -} From 044312ff844b657c07a74a6ace8b1f6f82df83c3 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 08:23:51 +0000 Subject: [PATCH 10/12] update --- packages/react-components/react-persona/MIGRATION.md | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/react-components/react-persona/MIGRATION.md b/packages/react-components/react-persona/MIGRATION.md index 57e145ba51c7a..697c575bbd736 100644 --- a/packages/react-components/react-persona/MIGRATION.md +++ b/packages/react-components/react-persona/MIGRATION.md @@ -13,7 +13,6 @@ Here's how the API of v8's `Persona` compares to the one from v9's `Persona` com - ``` ``` - - `imageShouldFadeIn` => NOT SUPPORTED - `isOutOfOffice` => Use the `outOfOffice` prop of the `presence` slot. E.g.: `presence={{ outOfOffice: true }}` - `presence` => Use the `status` prop of the `presence` slot. E.g.: `presence={{ status: 'away' }}` From 004b6af083e9bf35b9b1ac8593ea8be3148756d8 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 08:27:04 +0000 Subject: [PATCH 11/12] remove cleanup --- azure-pipelines.vrt-baseline.yml | 2 -- azure-pipelines.vrt-pr.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/azure-pipelines.vrt-baseline.yml b/azure-pipelines.vrt-baseline.yml index 3c541e599f5ea..b9d6808985f88 100644 --- a/azure-pipelines.vrt-baseline.yml +++ b/azure-pipelines.vrt-baseline.yml @@ -48,5 +48,3 @@ jobs: - bash: node packages/screenshotdiff/dist/index.js release --buildId $(Build.BuildId) displayName: 'Run Screenshotdiff update baseline' - - - template: .devops/templates/cleanup.yml diff --git a/azure-pipelines.vrt-pr.yml b/azure-pipelines.vrt-pr.yml index bbea3b4fa4e96..d2e25b6312cec 100644 --- a/azure-pipelines.vrt-pr.yml +++ b/azure-pipelines.vrt-pr.yml @@ -44,5 +44,3 @@ jobs: PathtoPublish: 'screenshots' ArtifactName: 'vrscreenshot' publishLocation: 'Container' - - - template: .devops/templates/cleanup.yml From 6d0a36b1e3788e87cdaa0f018b7a3959b060cba2 Mon Sep 17 00:00:00 2001 From: Sunil Surana Date: Thu, 27 Oct 2022 21:29:13 +0530 Subject: [PATCH 12/12] Update pool to 1ES --- azure-pipelines.vrt-baseline.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.vrt-baseline.yml b/azure-pipelines.vrt-baseline.yml index b9d6808985f88..676320c1c93fb 100644 --- a/azure-pipelines.vrt-baseline.yml +++ b/azure-pipelines.vrt-baseline.yml @@ -12,8 +12,7 @@ trigger: variables: skipComponentGovernanceDetection: true -pool: - vmImage: ubuntu-latest +pool: '1ES-Host-Ubuntu' jobs: - job: VRToolUpdateBaseline