diff options
| author | 2025-04-04 23:03:05 -0500 | |
|---|---|---|
| committer | 2025-04-04 23:03:36 -0500 | |
| commit | d384f70150ecfcdcbdf64a3ae0312a0d3ad97a89 (patch) | |
| tree | 21d991dd128b2de463c7b8107be3efc48243e224 /.github/workflows | |
| parent | Don'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.yml | 2 |
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 |
