Skip to content

Commit b842293

Browse files
committed
ci: remove ReleaseSafe optimization for faster CI builds
Use default Debug mode for cross-platform build checks — ReleaseSafe adds unnecessary compile time when the goal is just verifying compilation succeeds on each target.
1 parent b085925 commit b842293

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
version: '0.16.0'
3939

4040
- name: Build
41-
run: zig build -Dtarget=${{ matrix.target }} -Doptimize=ReleaseSafe
41+
run: zig build -Dtarget=${{ matrix.target }}
4242
shell: bash
4343

4444
test:

0 commit comments

Comments
 (0)