Default to self-hosted unless GitHub hosted runner is detected

Refactor read_env in unix.sh
This commit is contained in:
Shivam Mathur
2022-01-12 21:15:11 +05:30
parent f7f679181d
commit 3a4acaaed8
2 changed files with 5 additions and 6 deletions

View File

@ -169,7 +169,7 @@ $ts = $env:PHPTS -eq 'ts'
if($env:PHPTS -ne 'ts') {
$env:PHPTS = 'nts'
}
if($env:RUNNER -eq 'self-hosted') {
if($env:RUNNER -eq 'self-hosted' -or (-not($env:ImageOS) -and -not($env:ImageVersion))) {
$bin_dir = 'C:\tools\bin'
$php_dir = "$php_dir$version"
$ext_dir = "$php_dir\ext"