Skip to content

Commit 2702d04

Browse files
mochalinsjinzhongjia
authored andcommitted
scm: Fix Zig CI to use verbose enum
1 parent 9c7f07b commit 2702d04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/zig.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
with:
2323
version: ${{ matrix.version }}
2424
- name: Build static library
25-
run: zig build -Dverbose
25+
run: zig build -Dverbose=debug
2626
- name: Build dynamic library
2727
if: ${{ !cancelled() }}
28-
run: zig build -Ddynamic -Dverbose
28+
run: zig build -Ddynamic -Dverbose=debug
2929
- name: Build static library with TLS support
3030
if: runner.os == 'Linux'
31-
run: zig build -Denable-tls -Dverbose
31+
run: zig build -Denable-tls -Dverbose=debug
3232
- name: Build dynamic library with TLS support
3333
if: runner.os == 'Linux'
34-
run: zig build -Ddynamic -Denable-tls -Dverbose
34+
run: zig build -Ddynamic -Denable-tls -Dverbose=debug
3535
- name: Build examples
3636
run: zig build examples

0 commit comments

Comments
 (0)