summaryrefslogtreecommitdiff
path: root/.builds
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 /.builds
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 '.builds')
-rw-r--r--.builds/alpine-edge-amd64.yml16
-rw-r--r--.builds/debian-stable-aarch64.yml8
-rw-r--r--.builds/debian-stable-amd64.yml14
-rw-r--r--.builds/freebsd-latest-amd64.yml16
4 files changed, 40 insertions, 14 deletions
diff --git a/.builds/alpine-edge-amd64.yml b/.builds/alpine-edge-amd64.yml
index a261064..0869f6d 100644
--- a/.builds/alpine-edge-amd64.yml
+++ b/.builds/alpine-edge-amd64.yml
@@ -18,10 +18,18 @@ tasks:
18 mv ~/zig-linux-* ~/zig-master 18 mv ~/zig-linux-* ~/zig-master
19 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv 19 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv
20 20
21 - test: | 21 - test_in_memory: |
22 cd zig-sqlite 22 cd zig-sqlite
23 TERM=dumb zig build test 23 TERM=dumb zig build test -Din_memory=true
24 24
25 - test_in_memory: | 25 - test_filesystem: |
26 cd zig-sqlite
27 TERM=dumb zig build test -Din_memory=false
28
29 - test_in_memory_with_bundled_library: |
30 cd zig-sqlite
31 TERM=dumb zig build test -Din_memory=true -Duse_bundled
32
33 - test_filesystem_with_bundled_library: |
26 cd zig-sqlite 34 cd zig-sqlite
27 TERM=dumb zig build test -Din_memory 35 TERM=dumb zig build test -Din_memory=false -Duse_bundled
diff --git a/.builds/debian-stable-aarch64.yml b/.builds/debian-stable-aarch64.yml
index c317494..ded3f93 100644
--- a/.builds/debian-stable-aarch64.yml
+++ b/.builds/debian-stable-aarch64.yml
@@ -17,6 +17,10 @@ tasks:
17 mv ~/zig-linux-* ~/zig-master 17 mv ~/zig-linux-* ~/zig-master
18 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv 18 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv
19 19
20 - test: | 20 - test_filesystem: |
21 cd zig-sqlite 21 cd zig-sqlite
22 TERM=dumb zig build test 22 TERM=dumb zig build test -Din_memory=false
23
24 - test_filesystem_with_bundled_library: |
25 cd zig-sqlite
26 TERM=dumb zig build test -Din_memory=false -Duse_bundled -Dtarget=native-native-musl
diff --git a/.builds/debian-stable-amd64.yml b/.builds/debian-stable-amd64.yml
index be3d1a0..03ec7d9 100644
--- a/.builds/debian-stable-amd64.yml
+++ b/.builds/debian-stable-amd64.yml
@@ -17,10 +17,16 @@ tasks:
17 mv ~/zig-linux-* ~/zig-master 17 mv ~/zig-linux-* ~/zig-master
18 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv 18 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv
19 19
20 - test: | 20 - test_in_memory: |
21 cd zig-sqlite 21 cd zig-sqlite
22 TERM=dumb zig build test 22 TERM=dumb zig build test -Din_memory=true
23 23
24 - test_in_memory: | 24 - test_filesystem: |
25 cd zig-sqlite 25 cd zig-sqlite
26 TERM=dumb zig build test -Din_memory 26 TERM=dumb zig build test -Din_memory=false
27
28 # TODO(vincent): This fails with Debian for some reason
29 #
30 # - test_with_bundled_library: |
31 # cd zig-sqlite
32 # TERM=dumb zig build test -Din_memory -Duse_bundled
diff --git a/.builds/freebsd-latest-amd64.yml b/.builds/freebsd-latest-amd64.yml
index f80ca64..a380814 100644
--- a/.builds/freebsd-latest-amd64.yml
+++ b/.builds/freebsd-latest-amd64.yml
@@ -17,10 +17,18 @@ tasks:
17 mv ~/zig-freebsd-* ~/zig-master 17 mv ~/zig-freebsd-* ~/zig-master
18 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv 18 echo "export PATH=$PATH:~/zig-master" >> ~/.buildenv
19 19
20 - test: | 20 - test_in_memory: |
21 cd zig-sqlite 21 cd zig-sqlite
22 TERM=dumb zig build test 22 TERM=dumb zig build test -Din_memory=true
23 23
24 - test_in_memory: | 24 - test_filesystem: |
25 cd zig-sqlite
26 TERM=dumb zig build test -Din_memory=false
27
28 - test_in_memory_with_bundled_library: |
29 cd zig-sqlite
30 TERM=dumb zig build test -Din_memory=true -Duse_bundled
31
32 - test_filesystem_with_bundled_library: |
25 cd zig-sqlite 33 cd zig-sqlite
26 TERM=dumb zig build test -Din_memory 34 TERM=dumb zig build test -Din_memory=false -Duse_bundled