From 224c33d6382385ab22697be00b9eab1e165a3028 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Fri, 27 Jan 2023 16:10:13 -0700 Subject: [PATCH] .github: Verify that extra-conf is honored --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7adf9dd..9700a35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,6 +59,8 @@ jobs: backtrace: full github-token: ${{ secrets.GITHUB_TOKEN }} reinstall: true + extra-conf: | + use-sqlite-wal = true - name: Test `nix` with `$GITHUB_PATH` if: success() || failure() run: | @@ -71,6 +73,7 @@ jobs: run: | cat -n /etc/nix/nix.conf grep -E "^trusted-users = .*$USER" /etc/nix/nix.conf + grep -E "^use-sqlite-wal = true" /etc/nix/nix.conf run-x86_64-darwin: name: Run x86_64 Darwin @@ -129,6 +132,8 @@ jobs: backtrace: full github-token: ${{ secrets.GITHUB_TOKEN }} reinstall: true + extra-conf: | + use-sqlite-wal = true - name: Test `nix` with `$GITHUB_PATH` if: success() || failure() run: | @@ -141,3 +146,4 @@ jobs: run: | cat -n /etc/nix/nix.conf grep -E "^trusted-users = .*$USER" /etc/nix/nix.conf + grep -E "^use-sqlite-wal = true" /etc/nix/nix.conf