From c5ef310fe53fd75787e40abcd0637a22499361bd Mon Sep 17 00:00:00 2001 From: Vikash Yadav <95463767+v-viyada@users.noreply.github.com> Date: Thu, 25 Apr 2024 09:52:23 -0700 Subject: [PATCH] fix: Changing ubuntu image for CI pipeline to match the image used in github PR workflow (#7318) CI pipeline is failing frequently with transient timeout issues in e2e testing. GitHub PR workflow does not fail for the same step. So updating Linux image to ubuntu 20.04 in CI to match image version in GitHub PR workflow. #### Details ##### Motivation ##### Context #### Pull request checklist - [ ] Addresses an existing issue: #0000 - [x] Ran `yarn fastpass` - [ ] Added/updated relevant unit test(s) (and ran `yarn test`) - [ ] Verified code coverage for the changes made. Check coverage report at: `/test-results/unit/coverage` - [ ] PR title *AND* final merge commit title both start with a semantic tag (`fix:`, `chore:`, `feat(feature-name):`, `refactor:`). See `CONTRIBUTING.md`. - [ ] (UI changes only) Added screenshots/GIFs to description above - [ ] (UI changes only) Verified usability with NVDA/JAWS --- build-webCI.yaml | 2 +- build.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-webCI.yaml b/build-webCI.yaml index 0d8b93ea83f..10f328b03b8 100644 --- a/build-webCI.yaml +++ b/build-webCI.yaml @@ -14,7 +14,7 @@ trigger: variables: windowsImage: 'windows-2022-secure' macImage: 'macOS-11' - linuxImage: 'ubuntu-22.04-secure' + linuxImage: 'ubuntu-20.04' Codeql.Enabled: true extends: diff --git a/build.yaml b/build.yaml index 4013ed1995b..eac075c5c5c 100644 --- a/build.yaml +++ b/build.yaml @@ -14,7 +14,7 @@ trigger: variables: windowsImage: 'windows-2022-secure' macImage: 'macOS-11' - linuxImage: 'ubuntu-22.04-secure' + linuxImage: 'ubuntu-20.04' Codeql.Enabled: true extends: