You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/setup/install_appveyor_byoc.sh

53 lines
1.6 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-03-09 22:38:36 +0000 (Mon, 09 Mar 2020)
#
2 years ago
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
2 years ago
# https://www.linkedin.com/in/HariSekhon
#
# Installs PowerShell on Mac and various Linux distros
#
# https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux
# Mac - could do this, but following standard powershell install and calling from there works too
#
# https://www.appveyor.com/docs/byoc/mac/
#
# HOMEBREW_HOST_AUTH_TKN=<host-authorization-token> HOMEBREW_APPVEYOR_URL=https://ci.appveyor.com brew install appveyor/brew/appveyor-host-agent
#
# shows up in brew services either way:
#
# brew services list
# Linux:
#
# https://www.appveyor.com/docs/byoc/linux/
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if ! type -P pwsh &>/dev/null; then
"$srcdir/install_powershell.sh"
fi
# AppVeyor host dependencies
# sysvinit-tools on RHEL, but appveyor byoc looks for dpkg so is probably only compatible with debian based distributions
if grep -Eiq 'debian|ubuntu' /etc/*release; then
apt-get update
apt-get install -y libcap2-bin libterm-ui-perl sudo sysvinit-utils
fi
# leading whitespace break PowerShell commands
pwsh << EOF
Install-Module AppVeyorBYOC -Scope CurrentUser -Force; Import-Module AppVeyorBYOC
EOF