-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (35 loc) · 887 Bytes
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: windows
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 10 * * 1"
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: bash
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
version: master
- run: curl -fsS -o test/twitter.json https://raw.githubusercontent.com/simdjson/simdjson/master/jsonexamples/twitter.json
- run: zig build test
- run: zig build test -Dstep-128
- run: zig build
- run: zig build -Dondemand
- run: zig build -Dstep-128
- run: zig build -Dondemand -Dstep-128