summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-01-24 14:48:40 +0100
committerGravatar GitHub2021-01-24 14:48:40 +0100
commit858be1da6ce1f38163d42bd714fd3b04854d9083 (patch)
treeb8a5ce020479037e9ca55a1e78946cef57317c9d /.github/workflows
parentreadme: update type mappings rules (diff)
parentci: try to fix the build with sqlite bundled (diff)
downloadzig-sqlite-858be1da6ce1f38163d42bd714fd3b04854d9083.tar.gz
zig-sqlite-858be1da6ce1f38163d42bd714fd3b04854d9083.tar.xz
zig-sqlite-858be1da6ce1f38163d42bd714fd3b04854d9083.zip
Merge pull request #5 from vrischmann/sqlite-source
embed sqlite source code
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index ead0083..25e89bb 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -27,7 +27,7 @@ jobs:
27 run: zig build 27 run: zig build
28 28
29 - name: Run Tests with filesystem 29 - name: Run Tests with filesystem
30 run: zig build test 30 run: zig build test -Din_memory=false
31 31
32 - name: Run Tests in memory 32 - name: Run Tests in memory
33 run: zig build test 33 run: zig build test -Din_memory=true