Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,18 @@ runs:
# any announcements).
# b) It was seemingly built without threading (no <mutex>,
# <thread>, etc.).
$version = '8.1.0'
# $version = '8.1.0'
# As of 2022-13-5 this has been fixed and chocolatey distributes
# version 11.2.0 which does work

if ($x64) {
# If the 32-bit version is installed, we won't detect that.
# But it's not that important, and we save a lot of time.
Install-Package $pkg --version $version
Install-Package $pkg
} else {
# Assuming the 64-bit version is installed.
Remove-Package $pkg
Install-Package $pkg --version $version --x86
Install-Package $pkg --x86
}
echo $mingw_bin >> $env:GITHUB_PATH

Expand Down