1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-26 07:06:51 +00:00

Use gcc explicitly in mingw build.

This commit is contained in:
Calvin Rose 2023-01-22 11:21:28 -06:00
parent 8b0bcf4db9
commit 20bc323d17

View File

@ -48,11 +48,12 @@ jobs:
- name: Setup Mingw - name: Setup Mingw
uses: msys2/setup-msys2@v2 uses: msys2/setup-msys2@v2
with: with:
msystem: UCRT64
update: true update: true
install: >- install: >-
base-devel base-devel
git git
mingw-w64-x86_64-toolchain gcc
- name: Build the project - name: Build the project
shell: cmd shell: cmd
run: make -j run: make -j CC=gcc