aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2025-04-04 23:03:05 -0500
committerCalvin Rose <calsrose@gmail.com>2025-04-04 23:03:36 -0500
commitd384f70150ecfcdcbdf64a3ae0312a0d3ad97a89 (patch)
tree21d991dd128b2de463c7b8107be3efc48243e224 /.github/workflows
parentDon't try to search for libraries when building a static binary. (diff)
Disable static compilation on macos.
Static compilation will not work without extra effort on macos due to missing static builds of various core libraries.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 9fd2ec0..013cd0b 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -34,7 +34,7 @@ jobs:
- name: Test Install
run: sudo janet -e '(bundle/install "spork")'
- name: Run Tests
- run: cd spork && janet -l ./bundle -e "(check)"
+ run: cd spork && VERBOSE=1 janet -l ./bundle -e "(check)"
test-windows:
name: Build and test on Windows