forked from lix-project/lix-installer
Merge branch 'main' into hoverbear/ds-441-detect-nixos
This commit is contained in:
commit
ffaee2669d
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -92,7 +92,7 @@ jobs:
|
||||||
- name: Set executable
|
- name: Set executable
|
||||||
run: chmod +x ./harmonic
|
run: chmod +x ./harmonic
|
||||||
- name: Initial install
|
- name: Initial install
|
||||||
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install linux-multi --no-confirm
|
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install linux-multi --extra-conf "access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}" --no-confirm
|
||||||
- name: Test run
|
- name: Test run
|
||||||
run: |
|
run: |
|
||||||
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
||||||
|
@ -100,7 +100,7 @@ jobs:
|
||||||
- name: Initial uninstall
|
- name: Initial uninstall
|
||||||
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic uninstall --no-confirm
|
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic uninstall --no-confirm
|
||||||
- name: Repeated install
|
- name: Repeated install
|
||||||
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install linux-multi --no-confirm
|
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install linux-multi --extra-conf "access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}" --no-confirm
|
||||||
- name: Repeated test run
|
- name: Repeated test run
|
||||||
run: |
|
run: |
|
||||||
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
||||||
|
@ -137,7 +137,7 @@ jobs:
|
||||||
- name: Set executable
|
- name: Set executable
|
||||||
run: chmod +x ./harmonic
|
run: chmod +x ./harmonic
|
||||||
- name: Initial install
|
- name: Initial install
|
||||||
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install darwin-multi --no-confirm
|
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install darwin-multi --extra-conf "access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}" --no-confirm
|
||||||
- name: Test run
|
- name: Test run
|
||||||
run: |
|
run: |
|
||||||
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
||||||
|
@ -145,7 +145,7 @@ jobs:
|
||||||
- name: Initial uninstall
|
- name: Initial uninstall
|
||||||
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic uninstall --no-confirm
|
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic uninstall --no-confirm
|
||||||
- name: Repeated install
|
- name: Repeated install
|
||||||
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install darwin-multi --no-confirm
|
run: sudo RUST_LOG=harmonic=trace RUST_BACKTRACE=full ./harmonic install darwin-multi --extra-conf "access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}" --no-confirm
|
||||||
- name: Repeated test run
|
- name: Repeated test run
|
||||||
run: |
|
run: |
|
||||||
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
||||||
|
|
|
@ -21,6 +21,7 @@ impl PlaceNixConfiguration {
|
||||||
let buf = format!(
|
let buf = format!(
|
||||||
"\
|
"\
|
||||||
{extra_conf}\n\
|
{extra_conf}\n\
|
||||||
|
\n\
|
||||||
build-users-group = {nix_build_group_name}\n\
|
build-users-group = {nix_build_group_name}\n\
|
||||||
\n\
|
\n\
|
||||||
experimental-features = nix-command flakes\n\
|
experimental-features = nix-command flakes\n\
|
||||||
|
|
Loading…
Reference in a new issue