Skip to content

Commit

Permalink
Fail when runner it set to github on self-hosted environments
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Feb 7, 2022
1 parent 8b26e8d commit 78532b1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/scripts/unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ read_env() {
fail_fast="${fail_fast:-${FAIL_FAST:-false}}"
[[ -z "${ImageOS}" && -z "${ImageVersion}" ]] && _runner=self-hosted || _runner=github
runner="${runner:-${RUNNER:-$_runner}}"

if [[ "$runner" = "github" && $_runner = "self-hosted" ]]; then
fail_fast=true
add_log "$cross" "Runner" "Runner set as github in self-hosted environment"
fi
}

# Function to download a file using cURL.
Expand Down
6 changes: 5 additions & 1 deletion src/scripts/win32.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,11 @@ if ( $env:GITHUB_ACTIONS -eq 'true') {
$env:END_GROUP = ''
}

if($env:RUNNER -eq 'self-hosted' -or (-not($env:ImageOS) -and -not($env:ImageVersion))) {
if(-not($env:ImageOS) -and -not($env:ImageVersion)) {
if($env:RUNNER -eq 'github') {
Add-Log $cross "Runner" "Runner set as github in self-hosted environment"
exit 1
}
$bin_dir = 'C:\tools\bin'
$php_dir = "$php_dir$version"
$ext_dir = "$php_dir\ext"
Expand Down

0 comments on commit 78532b1

Please sign in to comment.