mirror of https://github.com/status-im/consul.git
27 lines
1.0 KiB
Bash
Executable File
27 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
#
|
|
# This script generates tag-sets that can be used as runs-on: values to select runners.
|
|
|
|
set -euo pipefail
|
|
|
|
case "$GITHUB_REPOSITORY" in
|
|
*-enterprise)
|
|
# shellcheck disable=SC2129
|
|
echo "compute-small=['self-hosted', 'ondemand', 'os=windows-2019', 'type=m6a.2xlarge']" >>"$GITHUB_OUTPUT"
|
|
echo "compute-medium=['self-hosted', 'ondemand', 'os=windows-2019', 'type=m6a.4xlarge']" >>"$GITHUB_OUTPUT"
|
|
echo "compute-large=['self-hosted', 'ondemand', 'os=windows-2019', 'type=m6a.8xlarge']" >>"$GITHUB_OUTPUT"
|
|
# m5d.8xlarge is equivalent to our xl custom runner in CE
|
|
echo "compute-xl=['self-hosted', 'ondemand', 'os=windows-2019', 'type=m6a.12xlarge']" >>"$GITHUB_OUTPUT"
|
|
;;
|
|
*)
|
|
# shellcheck disable=SC2129
|
|
echo "compute-small=['windows-2019']" >>"$GITHUB_OUTPUT"
|
|
echo "compute-medium=['windows-2019']" >>"$GITHUB_OUTPUT"
|
|
echo "compute-large=['windows-2019']" >>"$GITHUB_OUTPUT"
|
|
echo "compute-xl=['windows-2019']" >>"$GITHUB_OUTPUT"
|
|
;;
|
|
esac
|