File tree 4 files changed +15
-12
lines changed
4 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 8
8
test-linux :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v3
12
- with :
13
- submodules : recursive
11
+ - uses : actions/checkout@v4
14
12
- uses : goto-bus-stop/setup-zig@v2
15
13
with :
16
14
version : 0.12.0
@@ -19,21 +17,26 @@ jobs:
19
17
test-macos :
20
18
runs-on : macos-latest
21
19
steps :
22
- - uses : actions/checkout@v3
23
- with :
24
- submodules : recursive
20
+ - uses : actions/checkout@v4
25
21
- uses : goto-bus-stop/setup-zig@2a9625d550eefc3a9b1a43d342ad655f563f8241
26
22
with :
27
23
version : 0.12.0
28
24
- run : brew install pcre
29
25
- run : zig build
30
26
- run : zig build test
27
+ test-windows :
28
+ runs-on : windows-latest
29
+ steps :
30
+ - uses : actions/checkout@v4
31
+ - uses : goto-bus-stop/setup-zig@v2
32
+ with :
33
+ version : 0.12.0
34
+ - run : zig build
35
+ - run : zig build test
31
36
lint :
32
37
runs-on : ubuntu-latest
33
38
steps :
34
- - uses : actions/checkout@v3
35
- with :
36
- submodules : recursive
39
+ - uses : actions/checkout@v4
37
40
- uses : goto-bus-stop/setup-zig@v2
38
41
with :
39
42
version : 0.12.0
Original file line number Diff line number Diff line change 1
1
/.zig-cache
2
+ /zig-cache
2
3
/zig-out
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ Zig port of [Comrak](https://github.com/kivikakk/comrak). Maintains 100% spec-c
18
18
$ zig fetch --save https://github.com/kivikakk/koino/archive/<commit hash>.tar.gz
19
19
```
20
20
21
- * [ Follow the ` libpcre.zig ` dependency install instructions] ( https://github.com/kivikakk/libpcre.zig/blob/main/README.md ) for your operating system.
22
21
* Add the following to your ` build.zig ` 's ` build ` function:
23
22
``` zig
24
23
const koino_pkg = b.dependency("koino", .{ .optimize = optimize, .target = target });
Original file line number Diff line number Diff line change 4
4
.minimum_zig_version = "0.12.0" ,
5
5
.dependencies = .{
6
6
.@"libpcre.zig" = .{
7
- .url = "https://github.com/kivikakk/libpcre.zig/archive/9522ad9bcce76ce608ac62097450d4eac7436d9c .tar.gz" ,
8
- .hash = "1220fa274f41744bc60b284f9264705f772b98afd2ed219cebb6cec744422e8e2692 " ,
7
+ .url = "https://github.com/kivikakk/libpcre.zig/archive/0f3e120c75c297f7d88a5c698d941a9e730a2059 .tar.gz" ,
8
+ .hash = "12208c8c5b46df969207ca1458b95ebbe988892d1f0e028d1fb95bd58cf55bca6628 " ,
9
9
},
10
10
.@"htmlentities.zig" = .{
11
11
.url = "https://github.com/kivikakk/htmlentities.zig/archive/6c6ab63c9fce8317049d332377db760a2c8932e7.tar.gz" ,
You can’t perform that action at this time.
0 commit comments