From 15b0b7f5e33e9fb1471d35218d2f66511f1ec4b7 Mon Sep 17 00:00:00 2001 From: pantor Date: Sat, 16 Jan 2021 18:23:20 +0100 Subject: [PATCH] add gcc via choco --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39083735..7f1a759f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -228,7 +228,8 @@ jobs: # Chocolatey GCC is broken on the windows-2019 image. # See: https://github.com/DaanDeMeyer/doctest/runs/231595515 # See: https://github.community/t5/GitHub-Actions/Something-is-wrong-with-the-chocolatey-installed-version-of-gcc/td-p/32413 - scoop install gcc --global + # scoop install gcc --global + choco install mingw echo "CC=gcc" >> $GITHUB_ENV echo "CXX=g++" >> $GITHUB_ENV } elseif ("${{ matrix.compiler }}" -eq "clang") {