.github: Verify that extra-conf is honored
This commit is contained in:
parent
8589344a03
commit
224c33d638
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -59,6 +59,8 @@ jobs:
|
||||||
backtrace: full
|
backtrace: full
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
reinstall: true
|
reinstall: true
|
||||||
|
extra-conf: |
|
||||||
|
use-sqlite-wal = true
|
||||||
- name: Test `nix` with `$GITHUB_PATH`
|
- name: Test `nix` with `$GITHUB_PATH`
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
run: |
|
run: |
|
||||||
|
@ -71,6 +73,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cat -n /etc/nix/nix.conf
|
cat -n /etc/nix/nix.conf
|
||||||
grep -E "^trusted-users = .*$USER" /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:
|
run-x86_64-darwin:
|
||||||
name: Run x86_64 Darwin
|
name: Run x86_64 Darwin
|
||||||
|
@ -129,6 +132,8 @@ jobs:
|
||||||
backtrace: full
|
backtrace: full
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
reinstall: true
|
reinstall: true
|
||||||
|
extra-conf: |
|
||||||
|
use-sqlite-wal = true
|
||||||
- name: Test `nix` with `$GITHUB_PATH`
|
- name: Test `nix` with `$GITHUB_PATH`
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
run: |
|
run: |
|
||||||
|
@ -141,3 +146,4 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cat -n /etc/nix/nix.conf
|
cat -n /etc/nix/nix.conf
|
||||||
grep -E "^trusted-users = .*$USER" /etc/nix/nix.conf
|
grep -E "^trusted-users = .*$USER" /etc/nix/nix.conf
|
||||||
|
grep -E "^use-sqlite-wal = true" /etc/nix/nix.conf
|
||||||
|
|
Loading…
Reference in a new issue