Skip to content

Commit e280657

Browse files
committed
chore(ci): simplify build command to use default configuration
Remove explicit -Doptimize=ReleaseSafe and -Dtarget=aarch64-linux-gnu from the CI build step. Using the default zig build command allows the CI to produce debug builds which compile faster and are sufficient for validating that the codebase compiles correctly on all platforms.
1 parent 0b180ad commit e280657

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
@@ -21,7 +21,7 @@ jobs:
2121
version: '0.16.0'
2222

2323
- name: Build
24-
run: zig build -Doptimize=ReleaseSafe -Dtarget=aarch64-linux-gnu
24+
run: zig build
2525
shell: bash
2626

2727
- name: Run tests

0 commit comments

Comments
 (0)