We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fb0a7f commit fe46969Copy full SHA for fe46969
1 file changed
.github/workflows/c-cpp.yml
@@ -8,15 +8,27 @@ on:
8
9
jobs:
10
build:
11
-
12
runs-on: windows-latest
+ defaults:
13
+ run:
14
+ shell: msys2 {0}
15
+
16
steps:
17
- uses: actions/checkout@v4
18
19
+ - name: Setup MSYS2
20
+ uses: msys2/setup-msys2@v2
21
+ with:
22
+ msystem: MINGW64
23
+ update: true
24
+ install: >-
25
+ mingw-w64-x86_64-gcc
26
+ mingw-w64-x86_64-SDL2
27
+ mingw-w64-x86_64-portaudio
28
+ make
29
30
- name: Build
31
run: |
32
cd source
- pacman -S mingw-w64-x86_64-gcc
- pacman -S mingw-w64-x86_64-SDL2
- pacman -S mingw-w64-x86_64-portaudio
33
make clean
34
make
0 commit comments