aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2023-01-22 11:21:28 -0600
committerCalvin Rose <calsrose@gmail.com>2023-01-22 11:21:28 -0600
commit20bc323d17a360582f2d4c9d7f70bdd62bde1530 (patch)
tree506e19d4e2b73211b8ca207c93cb5a7b9522c7fa /.github
parentAdd the mingw toolchain. (diff)
Use gcc explicitly in mingw build.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 383cd216..6dde896c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -48,11 +48,12 @@ jobs:
- name: Setup Mingw
uses: msys2/setup-msys2@v2
with:
+ msystem: UCRT64
update: true
install: >-
base-devel
git
- mingw-w64-x86_64-toolchain
+ gcc
- name: Build the project
shell: cmd
- run: make -j
+ run: make -j CC=gcc