diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-18 17:58:34 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-18 18:31:35 +0100 |
commit | b55f52a9b75359b02938ac003a6ea853b36a4f3e (patch) | |
tree | fcf59c762f2fd904a8c0567e7466f10a536ae77b /nix | |
parent | e8f9718ccd656dacc4fba2ed9fa5d8abf12ad37b (diff) | |
download | garage-b55f52a9b75359b02938ac003a6ea853b36a4f3e.tar.gz garage-b55f52a9b75359b02938ac003a6ea853b36a4f3e.zip |
[sqlite-r2d2] run integration test with all db enginessqlite-r2d2
Diffstat (limited to 'nix')
-rw-r--r-- | nix/compile.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nix/compile.nix b/nix/compile.nix index 1e712710..b276495d 100644 --- a/nix/compile.nix +++ b/nix/compile.nix @@ -168,13 +168,11 @@ let rootFeatures = if features != null then features else - ([ "garage/bundled-libs" "garage/sled" "garage/lmdb" "garage/k2v" ] ++ (if release then [ + ([ "garage/bundled-libs" "garage/sled" "garage/lmdb" "garage/sqlite" "garage/k2v" ] ++ (if release then [ "garage/consul-discovery" "garage/kubernetes-discovery" "garage/metrics" "garage/telemetry-otlp" - "garage/lmdb" - "garage/sqlite" ] else [ ])); |