Skip to content

Windows jobs getting stuck since today #26947

Discussion options

You must be logged in to vote

Just to close this out – It seems the issue was with msys2 updating pacman and not with github actions or the windows vm. I rearranged the install order of msys2 packages via pacman to first updated pacman and pkg-config and then all the rest like this - now it works again :

steps:
    - if: runner.os == 'Windows'
      run: |
        choco install msys2 --params "/NoUpdate"
        echo "::add-path::C:\\tools\\msys64\\usr\\bin"
        echo "::add-path::C:\\tools\\msys64\\mingw64\\bin"
        echo "::set-env name=PKG_CONFIG_PATH::/mingw64/lib/pkgconfig"
    - if: runner.os == 'Windows'
      run: |
        pacman -Sy --noconfirm pacman
        pacman -S --noconfirm pacman-mirrors pkg-co…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Actions Build, test, and automate your deployment pipeline with world-class CI/CD Product Feedback
1 participant