Skip to content

Commit 8250f31

Browse files
committed
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
1 parent 790fdbc commit 8250f31

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/windows_acceptance_tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,8 @@ jobs:
1111
windows_acceptance_tests:
1212
runs-on: windows-latest
1313
steps:
14-
- uses: msys2/setup-msys2@v2
15-
with:
16-
install: >-
17-
rsync
18-
dos2unix
19-
diffutils
20-
util-linux
21-
python-pip
14+
- name: Install msys2 packages
15+
run: pacman -S rsync dos2unix diffutils util-linux python-pip
2216

2317
- name: Checkout Core
2418
uses: actions/checkout@v3

0 commit comments

Comments
 (0)