Skip to content

Instantly share code, notes, and snippets.

@grahamc
Created August 20, 2018 15:10
Show Gist options
  • Save grahamc/a2fca850f949a2fd77c63700788a90d5 to your computer and use it in GitHub Desktop.
Save grahamc/a2fca850f949a2fd77c63700788a90d5 to your computer and use it in GitHub Desktop.
[130] grahamc@Morbo> nix-build ./test-script.nix --argstr imageNameFilter arch --argstr installMethodFilter install-default && ./result
/nix/store/bbnm43hjxydhlvd2fbakhd0yvpmvd4q6-run-tests.sh
+ /nix/store/0mpf5kmzgsvm1wfylby7944jd8p6rcn1-shellchecked-run-install-default-arch.sh
Test script for install-default-arch
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'generic/arch'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'generic/arch' is up to date...
==> default: A newer version of the box 'generic/arch' for provider 'virtualbox' is
==> default: available! You currently have version '1.4.12'. The latest is version
==> default: '1.8.14'. Run `vagrant box update` to update.
==> default: Setting the name of the VM: tmp0RmKWdnnjr_default_1534777632111_99435
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
==> default: Forwarding ports...
default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key
default:
default: Vagrant insecure key detected. Vagrant will automatically replace
default: this with a newly generated keypair for better security.
default:
default: Inserting generated public key within guest...
default: Removing insecure key from the guest if it's present...
default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
default: No guest additions were detected on the base box for this VM! Guest
default: additions are required for forwarded ports, shared folders, host only
default: networking, and more. If SSH fails on this machine, please install
default: the guest additions and repackage the box to continue.
default:
default: This is not an error message; everything may continue to work properly,
default: in which case you may ignore this message.
==> default: Running provisioner: shell...
default: Running: inline script
default: No setup needed: already has curl
#!/bin/sh
set -eux
curl https://nixos.org/nix/install | sh
#!/usr/bin/env bash
export PS4=' ''${BASH_SOURCE}::''${FUNCNAME[0]}::$LINENO '
set -u
testexitok() (
/bin/bash -c "exit 0"
)
testexitfail() (
/bin/bash -c "exit 1"
)
testshell() (
nix-shell -p hello --run hello
)
testnixenv() (
nix-env -iA nixpkgs.hello
hello
nix-env --uninstall 'hello.*'
)
testnixchannel() (
nix-channel --add https://nixos.org/channels/nixos-18.03 nixos-18-03
nix-channel --update
nix-env -iA nixos-18-03.hello
hello
)
runtest() {
testFn=$1
start=$(date '+%s')
echo "Starting: $testFn"
(
set -ex
"$testFn"
)
exitcode=$?
end=$(date '+%s')
echo "Finishing: $testFn, duration:$((end - start)) result:$exitcode"
}
(
runtest testexitok
runtest testexitfail
runtest testshell
runtest testnixenv
runtest testnixchannel
) 2>&1
arch-install + curl https://nixos.org/nix/install
arch-install + sh
arch-install % Total % Received % Xferd Average Speed Time Time Time Current
arch-install Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --: 0 0 0 0 0 0 0 0 --:--:-- --:100 2472 100 2472 0 0 4133 0 --:--:-- --:--:-- --:--:-- 4126
arch-install downloading Nix 2.0.4 binary tarball for x86_64-linux from 'https://nixos.org/releases/nix/nix-2.0.4/nix-2.0.4-x86_64-linux.tar.bz2' to '/tmp/nix-binary-tarball-unpack.AHFC8Xfzlz'...
arch-install % Total % Received % Xferd Average Speed Time Time Time Current
arch-install Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --: 0 21.0M 0 49152 0 0 55226 0 0:06:39 --: 4 21.0M 4 944k 0 0 528k 0 0:00:40 0: 7 21.0M 7 1712k 0 0 614k 0 0:00:35 0: 11 21.0M 11 2560k 0 0 675k 0 0:00:31 0: 16 21.0M 16 3456k 0 0 721k 0 0:00:29 0: 21 21.0M 21 4544k 0 0 783k 0 0:00:27 0: 26 21.0M 26 5728k 0 0 838k 0 0:00:25 0: 32 21.0M 32 7008k 0 0 900k 0 0:00:23 0: 39 21.0M 39 8448k 0 0 960k 0 0:00:22 0: 44 21.0M 44 9552k 0 0 974k 0 0:00:22 0: 47 21.0M 47 10.0M 0 0 949k 0 0:00:22 0: 50 21.0M 50 10.5M 0 0 917k 0 0:00:23 0: 53 21.0M 53 11.2M 0 0 897k 0 0:00:24 0: 57 21.0M 57 12.0M 0 0 889k 0 0:00:24 0: 60 21.0M 60 12.7M 0 0 882k 0 0:00:24 0: 63 21.0M 63 13.2M 0 0 859k 0 0:00:25 0: 65 21.0M 65 13.8M 0 0 845k 0 0:00:25 0: 67 21.0M 67 14.2M 0 0 820k 0 0:00:26 0: 68 21.0M 68 14.5M 0 0 789k 0 0:00:27 0: 70 21.0M 70 14.8M 0 0 769k 0 0:00:28 0: 73 21.0M 73 15.3M 0 0 757k 0 0:00:28 0: 76 21.0M 76 16.0M 0 0 752k 0 0:00:28 0: 79 21.0M 79 16.7M 0 0 751k 0 0:00:28 0: 83 21.0M 83 17.5M 0 0 756k 0 0:00:28 0: 87 21.0M 87 18.4M 0 0 763k 0 0:00:28 0: 92 21.0M 92 19.5M 0 0 777k 0 0:00:27 0: 98 21.0M 98 20.7M 0 0 791k 0 0:00:27 0:100 21.0M 100 21.0M 0 0 795k 0 0:00:27 0:00:27 --:--:-- 1030k
arch-install performing a single-user installation of Nix...
arch-install directory /nix does not exist; creating it by running 'mkdir -m 0755 /nix && chown vagrant /nix' using sudo
arch-install copying Nix to /nix/store...............................
arch-install initialising Nix database...
arch-install Nix: creating /home/vagrant/.nix-profile
arch-install installing 'nix-2.0.4'
arch-install building '/nix/store/9v9rz64kdblx991qw8q7472yhisz0rs2-user-environment.drv'...
arch-install created 6 symlinks in user environment
arch-install unpacking channels...
arch-install created 2 symlinks in user environment
arch-install modifying /home/vagrant/.bash_profile...
arch-install
arch-install Installation finished! To ensure that the necessary environment
arch-install variables are set, either log in again, or type
arch-install
arch-install . /home/vagrant/.nix-profile/etc/profile.d/nix.sh
arch-install
arch-install in your shell.
arch-test-login Starting: testexitok
arch-test-login ./testscript::runtest::37 testexitok
arch-test-login ./testscript::testexitok::7 /bin/bash -c 'exit 0'
arch-test-login Finishing: testexitok, duration:0 result:0
arch-test-login Starting: testexitfail
arch-test-login ./testscript::runtest::37 testexitfail
arch-test-login ./testscript::testexitfail::11 /bin/bash -c 'exit 1'
arch-test-login Finishing: testexitfail, duration:0 result:1
arch-test-login Starting: testshell
arch-test-login ./testscript::runtest::37 testshell
arch-test-login ./testscript::testshell::15 nix-shell -p hello --run hello
arch-test-login these paths will be fetched (69.43 MiB download, 417.56 MiB unpacked):
arch-test-login /nix/store/0g5ynmwmaxhphhrlxa8crbahsqgsjz21-bzip2-1.0.6.0.1
arch-test-login /nix/store/1597qm15zjjbl1xlr9yxy8k3jqsrma5y-pcre-8.42
arch-test-login /nix/store/1czyc43qpcan2yhcpqahd5cm41535bwz-glibc-2.27-bin
arch-test-login /nix/store/34dzxck5qjs8myz470lc4kxc2243wdr2-gcc-7.3.0-lib
arch-test-login /nix/store/37ni8bl5mza5k6j8583nr9n0vj2wk450-bash-interactive-4.4-p23-dev
arch-test-login /nix/store/3zx2h4k86bghc5q2jx8m8r3wpjr9pgzq-findutils-4.6.0
arch-test-login /nix/store/4aildxbxx6vh6j2kdh9psrfh619qwxnx-patch-2.7.6
arch-test-login /nix/store/4qw9nk0n54rnbyv4n7xsrnnfw30hqmhr-paxctl-0.9
arch-test-login /nix/store/553rihc190vsyy8b22iqcq25a6489h8y-binutils-2.30
arch-test-login /nix/store/5w8pi1i88kjw8xph0j8mls5f0rx0fxsc-gzip-1.9
arch-test-login /nix/store/6n9lxh6bp8kkr2ll109vf8lahjy5sdab-bzip2-1.0.6.0.1-bin
arch-test-login /nix/store/6z55ah524d1yn27jsiyva319r19mf0k8-bash-interactive-4.4-p23-info
arch-test-login /nix/store/7400syv4bixvj9vj09f3rsbqamp8jpr7-xz-5.2.4-bin
arch-test-login /nix/store/79b6s2wql94lwk8dyib2jc4fq8ixl13f-bash-4.4-p23
arch-test-login /nix/store/9zh15sv6acxq9rjbl5q2xcfx4j05ngwd-expand-response-params
arch-test-login /nix/store/a1cfv5mc40n2ysis3i4js0kbpci8rnz8-gnumake-4.2.1
arch-test-login /nix/store/aaf5395zrnv9m7i8vgqa1zayz38izar3-ed-1.14.2
arch-test-login /nix/store/b4nmwqg803a1jrrkisdwdk9qc3lia0vj-diffutils-3.6
arch-test-login /nix/store/bv8rivxx5i5rkwwncn7hnnih2wq9cy13-zlib-1.2.11
arch-test-login /nix/store/djmx227gagr1qqnf4n8lnvxdp6xmdpv9-bash-interactive-4.4-p23-man
arch-test-login /nix/store/i3cmiakqy0hzlybsff7pa9yck7nyzzbl-bash-interactive-4.4-p23-doc
arch-test-login /nix/store/j1gp5z50rwjmqqa6s21rvhhfc15bisym-gnused-4.5
arch-test-login /nix/store/kbzrrfix320x71icljxg0vpgiqq8f55a-gcc-wrapper-7.3.0
arch-test-login /nix/store/kpawaz6cidrwkf27imdwj06blydmzsir-xz-5.2.4
arch-test-login /nix/store/ky3jxhy46k1b6nya1zqzb71zq4bick2k-readline-7.0p5
arch-test-login /nix/store/llyw6zn8bhwj6zw6lzdlxyd25bk0bwn1-coreutils-8.29
arch-test-login /nix/store/n2rcxv8miv57hmg7y6mlvrwdxrm7901p-gnutar-1.30
arch-test-login /nix/store/nhna50x4ygw6xhqpkiwmrc2xh3x84y3z-hello-2.10
arch-test-login /nix/store/p6qvnrcgbkb319l51d39nkfmnig6zisi-attr-2.4.47
arch-test-login /nix/store/phjfrl8gr567cnk4k5kx0ii9csgyjkvm-patchelf-0.9
arch-test-login /nix/store/pykdd4na8h78zsfi437ri8ifv8p0jbcn-gcc-7.3.0
arch-test-login /nix/store/qlyi4m8fdsmncb2llyfrkim3jpgc5vp4-binutils-wrapper-2.30
arch-test-login /nix/store/qy4c3287r7k4966bsr0adqzx24pl5ic9-acl-2.2.52
arch-test-login /nix/store/rvmrk2ziwvz1rawkx4czriq6v8v1m8g4-glibc-2.27
arch-test-login /nix/store/v6dyhf8n8cd9vczqykhlmllyx1dx38mi-linux-headers-4.15
arch-test-login /nix/store/vg9gmfgk7k9snjrkms00dbnn2ssijxd1-ncurses-6.1
arch-test-login /nix/store/vnrj3wmsrf6jj5shisrfndcbc4c4w24k-gawk-4.2.1
arch-test-login /nix/store/w9zib34xi7vj761finrf8l4r4x483mmr-stdenv-linux
arch-test-login /nix/store/x07489pp39981l2cwc0yc4b4immy2r7l-bash-interactive-4.4-p23
arch-test-login /nix/store/yc3psgd7ryn3xdwkfks4b8sxp2dfh3c0-glibc-2.27-dev
arch-test-login /nix/store/zf6fczhbsci3nqdrh6wwfzvk79v0chkd-gnugrep-3.1
arch-test-login copying path '/nix/store/i3cmiakqy0hzlybsff7pa9yck7nyzzbl-bash-interactive-4.4-p23-doc' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/6z55ah524d1yn27jsiyva319r19mf0k8-bash-interactive-4.4-p23-info' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/djmx227gagr1qqnf4n8lnvxdp6xmdpv9-bash-interactive-4.4-p23-man' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/rvmrk2ziwvz1rawkx4czriq6v8v1m8g4-glibc-2.27' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/v6dyhf8n8cd9vczqykhlmllyx1dx38mi-linux-headers-4.15' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/p6qvnrcgbkb319l51d39nkfmnig6zisi-attr-2.4.47' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/79b6s2wql94lwk8dyib2jc4fq8ixl13f-bash-4.4-p23' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/qy4c3287r7k4966bsr0adqzx24pl5ic9-acl-2.2.52' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/0g5ynmwmaxhphhrlxa8crbahsqgsjz21-bzip2-1.0.6.0.1' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/llyw6zn8bhwj6zw6lzdlxyd25bk0bwn1-coreutils-8.29' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/6n9lxh6bp8kkr2ll109vf8lahjy5sdab-bzip2-1.0.6.0.1-bin' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/b4nmwqg803a1jrrkisdwdk9qc3lia0vj-diffutils-3.6' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/aaf5395zrnv9m7i8vgqa1zayz38izar3-ed-1.14.2' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/9zh15sv6acxq9rjbl5q2xcfx4j05ngwd-expand-response-params' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/3zx2h4k86bghc5q2jx8m8r3wpjr9pgzq-findutils-4.6.0' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/vnrj3wmsrf6jj5shisrfndcbc4c4w24k-gawk-4.2.1' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/34dzxck5qjs8myz470lc4kxc2243wdr2-gcc-7.3.0-lib' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/1czyc43qpcan2yhcpqahd5cm41535bwz-glibc-2.27-bin' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/a1cfv5mc40n2ysis3i4js0kbpci8rnz8-gnumake-4.2.1' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/yc3psgd7ryn3xdwkfks4b8sxp2dfh3c0-glibc-2.27-dev' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/j1gp5z50rwjmqqa6s21rvhhfc15bisym-gnused-4.5' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/n2rcxv8miv57hmg7y6mlvrwdxrm7901p-gnutar-1.30' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/5w8pi1i88kjw8xph0j8mls5f0rx0fxsc-gzip-1.9' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/nhna50x4ygw6xhqpkiwmrc2xh3x84y3z-hello-2.10' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/vg9gmfgk7k9snjrkms00dbnn2ssijxd1-ncurses-6.1' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/4aildxbxx6vh6j2kdh9psrfh619qwxnx-patch-2.7.6' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/phjfrl8gr567cnk4k5kx0ii9csgyjkvm-patchelf-0.9' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/4qw9nk0n54rnbyv4n7xsrnnfw30hqmhr-paxctl-0.9' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/1597qm15zjjbl1xlr9yxy8k3jqsrma5y-pcre-8.42' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/ky3jxhy46k1b6nya1zqzb71zq4bick2k-readline-7.0p5' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/zf6fczhbsci3nqdrh6wwfzvk79v0chkd-gnugrep-3.1' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/x07489pp39981l2cwc0yc4b4immy2r7l-bash-interactive-4.4-p23' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/kpawaz6cidrwkf27imdwj06blydmzsir-xz-5.2.4' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/37ni8bl5mza5k6j8583nr9n0vj2wk450-bash-interactive-4.4-p23-dev' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/7400syv4bixvj9vj09f3rsbqamp8jpr7-xz-5.2.4-bin' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/bv8rivxx5i5rkwwncn7hnnih2wq9cy13-zlib-1.2.11' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/553rihc190vsyy8b22iqcq25a6489h8y-binutils-2.30' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/pykdd4na8h78zsfi437ri8ifv8p0jbcn-gcc-7.3.0' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/qlyi4m8fdsmncb2llyfrkim3jpgc5vp4-binutils-wrapper-2.30' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/kbzrrfix320x71icljxg0vpgiqq8f55a-gcc-wrapper-7.3.0' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/w9zib34xi7vj761finrf8l4r4x483mmr-stdenv-linux' from 'https://cache.nixos.org'...
arch-test-login Hello, world!
arch-test-login Finishing: testshell, duration:23 result:0
arch-test-login Starting: testnixenv
arch-test-login ./testscript::runtest::37 testnixenv
arch-test-login ./testscript::testnixenv::19 nix-env -iA nixpkgs.hello
arch-test-login installing 'hello-2.10'
arch-test-login building '/nix/store/r0vq1j50hm8ldbxh0x62lha11f4l7lrh-user-environment.drv'...
arch-test-login created 38 symlinks in user environment
arch-test-login ./testscript::testnixenv::20 hello
arch-test-login Hello, world!
arch-test-login ./testscript::testnixenv::21 nix-env --uninstall 'hello.*'
arch-test-login uninstalling 'hello-2.10'
arch-test-login building '/nix/store/ja67a9dh754b607f0yzr2mrqkvw9cpn3-user-environment.drv'...
arch-test-login created 6 symlinks in user environment
arch-test-login Finishing: testnixenv, duration:0 result:0
arch-test-login Starting: testnixchannel
arch-test-login ./testscript::runtest::37 testnixchannel
arch-test-login ./testscript::testnixchannel::25 nix-channel --add https://nixos.org/channels/nixos-18.03 nixos-18-03
arch-test-login ./testscript::testnixchannel::26 nix-channel --update
arch-test-login unpacking channels...
arch-test-login created 5 symlinks in user environment
arch-test-login ./testscript::testnixchannel::27 nix-env -iA nixos-18-03.hello
arch-test-login installing 'hello-2.10'
arch-test-login these paths will be fetched (5.48 MiB download, 20.43 MiB unpacked):
arch-test-login /nix/store/hwwqshlmazzjzj7yhrkyjydxamvvkfd3-glibc-2.26-131
arch-test-login /nix/store/nic2bl8ry6vfyxr9717983d5b2l4sn1c-hello-2.10
arch-test-login copying path '/nix/store/hwwqshlmazzjzj7yhrkyjydxamvvkfd3-glibc-2.26-131' from 'https://cache.nixos.org'...
arch-test-login copying path '/nix/store/nic2bl8ry6vfyxr9717983d5b2l4sn1c-hello-2.10' from 'https://cache.nixos.org'...
arch-test-login building '/nix/store/zryi27fbw1yrvxz00cspcj3h1law372s-user-environment.drv'...
arch-test-login created 38 symlinks in user environment
arch-test-login ./testscript::testnixchannel::28 hello
arch-test-login Hello, world!
arch-test-login Finishing: testnixchannel, duration:12 result:0
arch-test-interactive Starting: testexitok
arch-test-interactive ./testscript::runtest::6 testexitok
arch-test-interactive ./testscript::testexitok::7 /bin/bash -c 'exit 0'
arch-test-interactive Finishing: testexitok, duration:0 result:0
arch-test-interactive Starting: testexitfail
arch-test-interactive ./testscript::runtest::6 testexitfail
arch-test-interactive ./testscript::testexitfail::11 /bin/bash -c 'exit 1'
arch-test-interactive Finishing: testexitfail, duration:0 result:1
arch-test-interactive Starting: testshell
arch-test-interactive ./testscript::runtest::6 testshell
arch-test-interactive ./testscript::testshell::15 nix-shell -p hello --run hello
arch-test-interactive bash: nix-shell: command not found
arch-test-interactive Finishing: testshell, duration:0 result:127
arch-test-interactive Starting: testnixenv
arch-test-interactive ./testscript::runtest::6 testnixenv
arch-test-interactive ./testscript::testnixenv::19 nix-env -iA nixpkgs.hello
arch-test-interactive bash: nix-env: command not found
arch-test-interactive Finishing: testnixenv, duration:0 result:127
arch-test-interactive Starting: testnixchannel
arch-test-interactive ./testscript::runtest::6 testnixchannel
arch-test-interactive ./testscript::testnixchannel::25 nix-channel --add https://nixos.org/channels/nixos-18.03 nixos-18-03
arch-test-interactive bash: nix-channel: command not found
arch-test-interactive Finishing: testnixchannel, duration:0 result:127
arch-test-interactive bash: cannot set terminal process group (-1): Inappropriate ioctl for device
arch-test-interactive bash: no job control in this shell
arch-test-ssh Starting: testexitok
arch-test-ssh ./testscript::runtest::37 testexitok
arch-test-ssh ./testscript::testexitok::7 /bin/bash -c 'exit 0'
arch-test-ssh Finishing: testexitok, duration:0 result:0
arch-test-ssh Starting: testexitfail
arch-test-ssh ./testscript::runtest::37 testexitfail
arch-test-ssh ./testscript::testexitfail::11 /bin/bash -c 'exit 1'
arch-test-ssh Finishing: testexitfail, duration:0 result:1
arch-test-ssh Starting: testshell
arch-test-ssh ./testscript::runtest::37 testshell
arch-test-ssh ./testscript::testshell::15 nix-shell -p hello --run hello
arch-test-ssh ./testscript: line 15: nix-shell: command not found
arch-test-ssh Finishing: testshell, duration:0 result:127
arch-test-ssh Starting: testnixenv
arch-test-ssh ./testscript::runtest::37 testnixenv
arch-test-ssh ./testscript::testnixenv::19 nix-env -iA nixpkgs.hello
arch-test-ssh ./testscript: line 19: nix-env: command not found
arch-test-ssh Finishing: testnixenv, duration:0 result:127
arch-test-ssh Starting: testnixchannel
arch-test-ssh ./testscript::runtest::37 testnixchannel
arch-test-ssh ./testscript::testnixchannel::25 nix-channel --add https://nixos.org/channels/nixos-18.03 nixos-18-03
arch-test-ssh ./testscript: line 25: nix-channel: command not found
arch-test-ssh Finishing: testnixchannel, duration:0 result:127
==> default: Forcing shutdown of VM...
==> default: Destroying VM and associated drives...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment