commit | 00d9060cc2eb45dde4dc345ba746bc272daaba24 | [log] [tgz] |
---|---|---|
author | Martin Storsjö <martin@martin.st> | Tue Jun 24 12:22:06 2025 +0300 |
committer | Martin Storsjö <martin@martin.st> | Wed Jun 25 23:15:02 2025 +0300 |
tree | 3263c5fa39975f5a97eeb91542285a33621be53d | |
parent | b835592e800f05ccadae10e81043ca1ef5c87960 [diff] |
github: Use gcc, not g++, for test building a C test program Signed-off-by: Martin Storsjö <martin@martin.st>
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d48364..59c5321 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml
@@ -554,7 +554,7 @@ ref: 20250430 - name: Run tests run: | - g++ test/hello.c -o hello.exe + gcc test/hello.c -o hello.exe ./hello.exe gcc test/crt-test.c -o crt-test.exe ./crt-test.exe