2020-02-27 00:12:17 +11:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
2020-05-26 22:34:45 +10:00
|
|
|
# Set jobs to number of cores
|
|
|
|
sudo sh -c 'echo max-jobs = auto >> /tmp/nix.conf'
|
|
|
|
# Allow binary caches for runner user
|
|
|
|
sudo sh -c 'echo trusted-users = root runner >> /tmp/nix.conf'
|
2020-08-26 02:13:35 +10:00
|
|
|
# Append extra nix configuration if provided
|
2020-08-26 02:07:38 +10:00
|
|
|
if [[ -n $INPUT_EXTRA_NIX_CONFIG ]]; then
|
2020-08-26 02:13:35 +10:00
|
|
|
echo "$INPUT_EXTRA_NIX_CONFIG" | sudo tee -a /tmp/nix.conf >/dev/null
|
2020-08-26 02:07:38 +10:00
|
|
|
fi
|
|
|
|
|
|
|
|
install_options=(
|
|
|
|
--daemon
|
|
|
|
--daemon-user-count 4
|
|
|
|
--nix-extra-conf-file /tmp/nix.conf
|
|
|
|
--darwin-use-unencrypted-nix-store-volume
|
|
|
|
)
|
2020-02-27 00:12:17 +11:00
|
|
|
|
2020-08-26 02:07:38 +10:00
|
|
|
if [[ $INPUT_SKIP_ADDING_NIXPKGS_CHANNEL = "true" || -n $INPUT_NIX_PATH ]]; then
|
|
|
|
install_options+=(--no-channel-add)
|
2020-05-27 21:17:01 +10:00
|
|
|
else
|
2020-05-29 00:25:05 +10:00
|
|
|
INPUT_NIX_PATH="/nix/var/nix/profiles/per-user/root/channels"
|
2020-05-27 21:17:01 +10:00
|
|
|
fi
|
|
|
|
|
2020-08-26 02:07:38 +10:00
|
|
|
sh <(curl --retry 5 --retry-connrefused -L "${INPUT_INSTALL_URL:-https://nixos.org/nix/install}") \
|
|
|
|
"${install_options[@]}"
|
2020-02-27 00:12:17 +11:00
|
|
|
|
|
|
|
if [[ $OSTYPE =~ darwin ]]; then
|
|
|
|
# Disable spotlight indexing of /nix to speed up performance
|
|
|
|
sudo mdutil -i off /nix
|
|
|
|
|
2020-05-26 22:34:45 +10:00
|
|
|
# macOS needs certificates hints
|
2020-02-27 00:12:17 +11:00
|
|
|
cert_file=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt
|
|
|
|
echo "::set-env name=NIX_SSL_CERT_FILE::$cert_file"
|
|
|
|
export NIX_SSL_CERT_FILE=$cert_file
|
|
|
|
sudo launchctl setenv NIX_SSL_CERT_FILE "$cert_file"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Set paths
|
|
|
|
echo "::add-path::/nix/var/nix/profiles/per-user/runner/profile/bin"
|
|
|
|
echo "::add-path::/nix/var/nix/profiles/default/bin"
|
2020-05-29 00:25:05 +10:00
|
|
|
|
|
|
|
if [[ $INPUT_NIX_PATH != "" ]]; then
|
|
|
|
echo "::set-env name=NIX_PATH::${INPUT_NIX_PATH}"
|
|
|
|
fi
|