Skip to content

Commit

Permalink
tmp: Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
giann committed Jan 15, 2024
1 parent d7933d0 commit 564d3c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
- name: Build test ffi lib
run: zig build-lib -dynamic tests/utils/foreign.zig && mv libforeign.* tests/utils/
- name: Run Tests
run: zig build -Doptimize=ReleaseSafe test
run: zig build test
- name: Cleanup
run: rm -rf zig-out zig-cache
- name: Run tests with JIT always on
run: zig build -Djit_always_on -Doptimize=ReleaseSafe test
run: zig build -Djit_always_on test
- name: Cleanup
run: rm -rf zig-out zig-cache
test-linux:
Expand All @@ -48,11 +48,11 @@ jobs:
- name: Build test ffi lib
run: zig build-lib -dynamic tests/utils/foreign.zig && mv libforeign.* tests/utils/
- name: Run tests
run: zig build -Doptimize=ReleaseSafe test
run: zig build test
- name: Cleanup
run: rm -rf zig-out zig-cache
- name: Run tests with JIT always on
run: zig build -Djit_always_on -Doptimize=ReleaseSafe test
run: zig build -Djit_always_on test
- name: Cleanup
run: rm -rf zig-cache zig-out
lint:
Expand Down

0 comments on commit 564d3c0

Please sign in to comment.