File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,13 @@ jobs:
3131 version : 0.14.1
3232
3333 # I don't know why this is needed for the docs to succeed on CI, but otherwise it consistently fails with:
34- # error: unable to open directory '.zig-cache/b/ ': FileNotFound
34+ # error: unable to open directory '... ': FileNotFound
3535 # See https://github.com/mxpv/luaz/actions/runs/16698403816/job/47265761593
36- - run : zig build
37-
38- - run : zig build docs
36+ - run : |
37+ mkdir -p ./.zig-global-cache
38+ zig build docs
39+ env:
40+ ZIG_GLOBAL_CACHE_DIR: ./.zig-global-cache
3941
4042 - uses : actions/configure-pages@v5
4143 - uses : actions/upload-pages-artifact@v3
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pub const Compiler = struct {
4242 dbg_level : u8 = 1 ,
4343
4444 /// Type information level for native code generation.
45- ///
45+ ///
4646 /// Information includes testable types for function arguments, locals, upvalues and some temporaries.
4747 ///
4848 /// - `0` - generate for native modules
You can’t perform that action at this time.
0 commit comments