Skip to content

Commit 516b09f

Browse files
popojanclaude
andcommitted
Fix build workflow: use make on Unix, add core8.c for Windows
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8b90025 commit 516b09f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
- name: Build (Unix)
3131
if: runner.os != 'Windows'
3232
run: |
33-
mkdir -p bin
34-
cc -Os -Wall -o bin/${{ matrix.output }} src/core.c src/render.c src/now.c
33+
make
34+
cp bin/now bin/${{ matrix.output }}
3535
3636
- name: Setup MSVC
3737
if: runner.os == 'Windows'
@@ -41,7 +41,7 @@ jobs:
4141
if: runner.os == 'Windows'
4242
run: |
4343
mkdir bin
44-
cl /O2 /Fe:bin/${{ matrix.output }} src/core.c src/render.c src/now.c
44+
cl /O2 /Fe:bin/${{ matrix.output }} src/core.c src/core8.c src/render.c src/now.c
4545
4646
- name: Test
4747
run: bin/${{ matrix.output }} -h

0 commit comments

Comments
 (0)