From 8250f319afe55067a7f7876c67969e809577b525 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Wed, 22 May 2024 12:47:30 -0500 Subject: [PATCH] Improved efficiency of windows acceptance test workflow by not re-installing msys2 msys2 is included in github windows images, e.g. https://github.com/actions/runner-images/tree/main/images/windows Ticket: ENT-11771 Changelog: none --- .github/workflows/windows_acceptance_tests.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/windows_acceptance_tests.yml b/.github/workflows/windows_acceptance_tests.yml index 06e9cefd25..b382975018 100644 --- a/.github/workflows/windows_acceptance_tests.yml +++ b/.github/workflows/windows_acceptance_tests.yml @@ -11,14 +11,8 @@ jobs: windows_acceptance_tests: runs-on: windows-latest steps: - - uses: msys2/setup-msys2@v2 - with: - install: >- - rsync - dos2unix - diffutils - util-linux - python-pip + - name: Install msys2 packages + run: pacman -S rsync dos2unix diffutils util-linux python-pip - name: Checkout Core uses: actions/checkout@v3