windows tweak

another option would be to switch to clang_rt compiler runtime.
but lets try this first.
This commit is contained in:
Viktor Szakats 2025-09-10 13:59:50 +02:00
parent effc7f61e7
commit 642d57578e
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -722,10 +722,10 @@ jobs:
steps:
- name: 'install packages'
env:
INSTALL_PACKAGES: ${{ matrix.compiler == 'clang-tidy' && 'clang mingw-w64-x86-64-dev' || 'gcc-mingw-w64-x86-64-win32' }}
INSTALL_PACKAGES: ${{ matrix.compiler == 'clang-tidy' && 'clang mingw-w64-x86-64-dev' || '' }}
run: |
sudo rm -f /var/lib/man-db/auto-update
sudo apt-get -o Dpkg::Use-Pty=0 install ${INSTALL_PACKAGES}
sudo apt-get -o Dpkg::Use-Pty=0 install gcc-mingw-w64-x86-64-win32 ${INSTALL_PACKAGES}
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with: