2020-02-26 13:12:17 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
2020-11-02 11:35:39 +00:00
|
|
|
if type -p nix &>/dev/null ; then
|
|
|
|
echo "Aborting: Nix is already installed at $(type -p nix)"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2020-08-25 16:26:01 +00:00
|
|
|
# Configure Nix
|
|
|
|
add_config() {
|
|
|
|
echo "$1" | sudo tee -a /tmp/nix.conf >/dev/null
|
|
|
|
}
|
2020-05-26 12:34:45 +00:00
|
|
|
# Set jobs to number of cores
|
2020-08-25 16:26:01 +00:00
|
|
|
add_config "max-jobs = auto"
|
2020-09-21 11:51:23 +00:00
|
|
|
# Allow binary caches for user
|
|
|
|
add_config "trusted-users = root $USER"
|
2020-08-25 16:13:35 +00:00
|
|
|
# Append extra nix configuration if provided
|
2020-08-25 16:56:36 +00:00
|
|
|
if [[ $INPUT_EXTRA_NIX_CONFIG != "" ]]; then
|
2020-08-25 16:26:01 +00:00
|
|
|
add_config "$INPUT_EXTRA_NIX_CONFIG"
|
2020-08-25 16:07:38 +00:00
|
|
|
fi
|
|
|
|
|
2020-08-25 16:26:01 +00:00
|
|
|
# Nix installer flags
|
|
|
|
installer_options=(
|
2020-08-25 16:07:38 +00:00
|
|
|
--daemon
|
|
|
|
--daemon-user-count 4
|
2020-09-21 11:51:23 +00:00
|
|
|
--no-channel-add
|
2020-08-25 16:07:38 +00:00
|
|
|
--darwin-use-unencrypted-nix-store-volume
|
2020-08-25 16:26:01 +00:00
|
|
|
--nix-extra-conf-file /tmp/nix.conf
|
2020-08-25 16:07:38 +00:00
|
|
|
)
|
2021-02-20 21:46:57 +00:00
|
|
|
if [[ $INPUT_INSTALL_OPTIONS != "" ]]; then
|
|
|
|
installer_options=("${installer_options[@]}" "${INPUT_INSTALL_OPTIONS[@]}")
|
|
|
|
fi
|
2020-02-26 13:12:17 +00:00
|
|
|
|
2021-02-20 21:46:57 +00:00
|
|
|
echo "installer options: ${installer_options[@]}"
|
2020-09-21 11:51:23 +00:00
|
|
|
# On self-hosted runners we don't need to install more than once
|
2020-09-21 12:30:19 +00:00
|
|
|
if [[ ! -d /nix/store ]]
|
2020-09-21 11:51:23 +00:00
|
|
|
then
|
|
|
|
sh <(curl --retry 5 --retry-connrefused -L "${INPUT_INSTALL_URL:-https://nixos.org/nix/install}") "${installer_options[@]}"
|
2020-05-27 11:17:01 +00:00
|
|
|
fi
|
|
|
|
|
2020-02-26 13:12:17 +00:00
|
|
|
if [[ $OSTYPE =~ darwin ]]; then
|
|
|
|
# Disable spotlight indexing of /nix to speed up performance
|
|
|
|
sudo mdutil -i off /nix
|
|
|
|
|
2020-05-26 12:34:45 +00:00
|
|
|
# macOS needs certificates hints
|
2020-02-26 13:12:17 +00:00
|
|
|
cert_file=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt
|
2020-12-22 19:11:29 +00:00
|
|
|
echo "NIX_SSL_CERT_FILE=$cert_file" >> "$GITHUB_ENV"
|
2020-02-26 13:12:17 +00:00
|
|
|
export NIX_SSL_CERT_FILE=$cert_file
|
|
|
|
sudo launchctl setenv NIX_SSL_CERT_FILE "$cert_file"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Set paths
|
2020-12-22 19:11:29 +00:00
|
|
|
echo "/nix/var/nix/profiles/per-user/$USER/profile/bin" >> "$GITHUB_PATH"
|
|
|
|
echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH"
|
2020-05-28 14:25:05 +00:00
|
|
|
|
2020-08-25 16:56:36 +00:00
|
|
|
if [[ $INPUT_NIX_PATH != "" ]]; then
|
2020-12-22 19:11:29 +00:00
|
|
|
echo "NIX_PATH=${INPUT_NIX_PATH}" >> "$GITHUB_ENV"
|
2020-05-28 14:25:05 +00:00
|
|
|
fi
|