mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:33:31 +03:00
GHA/windows: log preinstalled MSYS2 packages
CI jobs rely on defaults, sometimes to reduce log noise (possibly improve performance a bit) or simplify, sometimes by accident. List them to help debug or optimize on changes. Refs: https://github.com/actions/runner-images/issues/14562#issuecomment-5301777198636489312chttps://github.com/msys2/MSYS2-packages/pull/6491 https://github.com/msys2/MSYS2-packages/pull/6479 Follow-up tod854ab4673#22580 Follow-up toc349bd668c#14097 Closes #22589
This commit is contained in:
parent
c7c42afab9
commit
26dadd9ea3
1 changed files with 12 additions and 0 deletions
12
.github/workflows/windows.yml
vendored
12
.github/workflows/windows.yml
vendored
|
|
@ -329,6 +329,10 @@ jobs:
|
|||
install: 'mingw-w64-i686-c-ares mingw-w64-i686-gnutls mingw-w64-i686-libssh2 mingw-w64-i686-openssl' }
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: 'preinstalled tools'
|
||||
shell: bash
|
||||
run: echo '::group::MSYS2 packages'; /c/msys64/usr/bin/pacman.exe -Q || true; echo '::endgroup::'
|
||||
|
||||
- uses: msys2/setup-msys2@66cd2cce69caa17b53920067426061ca1de3a884 # v2.32.0
|
||||
if: ${{ matrix.sys == 'msys' }}
|
||||
with:
|
||||
|
|
@ -647,6 +651,10 @@ jobs:
|
|||
chkprefill: '' # Set it once to silence actionlint
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: 'preinstalled tools'
|
||||
shell: bash
|
||||
run: echo '::group::MSYS2 packages'; /c/msys64/usr/bin/pacman.exe -Q || true; echo '::endgroup::'
|
||||
|
||||
- uses: msys2/setup-msys2@66cd2cce69caa17b53920067426061ca1de3a884 # v2.32.0
|
||||
with:
|
||||
msystem: ${{ matrix.sys }}
|
||||
|
|
@ -1006,6 +1014,10 @@ jobs:
|
|||
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: 'preinstalled tools'
|
||||
shell: bash
|
||||
run: echo '::group::MSYS2 packages'; /c/msys64/usr/bin/pacman.exe -Q || true; echo '::endgroup::'
|
||||
|
||||
- uses: msys2/setup-msys2@66cd2cce69caa17b53920067426061ca1de3a884 # v2.32.0
|
||||
with:
|
||||
msystem: ${{ matrix.arch == 'arm64' && 'clangarm64' || 'ucrt64' }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue