mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-06 02:49:31 -06:00
workflows decreased number of cores
This commit is contained in:
2
.github/workflows/analyzers.yml
vendored
2
.github/workflows/analyzers.yml
vendored
@@ -42,7 +42,7 @@ jobs:
|
||||
[[ "${{ runner.name }}" == 'merydeye-'* ]] && isSelfHostedRunner='true' || isSelfHostedRunner='false'
|
||||
echo "TinyIsSelfHostedRunner=$isSelfHostedRunner" >> $GITHUB_ENV
|
||||
|
||||
[[ "$isSelfHostedRunner" == 'true' ]] && parallel=8 || parallel=2
|
||||
[[ "$isSelfHostedRunner" == 'true' ]] && parallel=4 || parallel=2
|
||||
echo "TinyParallel=$parallel" >> $GITHUB_ENV
|
||||
|
||||
tinyormPath=$(realpath ./main)
|
||||
|
||||
2
.github/workflows/vcpkg-linux.yml
vendored
2
.github/workflows/vcpkg-linux.yml
vendored
@@ -63,7 +63,7 @@ jobs:
|
||||
[[ "${{ runner.name }}" == 'merydeye-'* ]] && isSelfHostedRunner='true' || isSelfHostedRunner='false'
|
||||
echo "TinyIsSelfHostedRunner=$isSelfHostedRunner" >> $GITHUB_ENV
|
||||
|
||||
[[ "$isSelfHostedRunner" == 'true' ]] && parallel=8 || parallel=2
|
||||
[[ "$isSelfHostedRunner" == 'true' ]] && parallel=4 || parallel=2
|
||||
echo "TinyParallel=$parallel" >> $GITHUB_ENV
|
||||
|
||||
tinyormPath=$(realpath ./main)
|
||||
|
||||
2
.github/workflows/vcpkg-windows.yml
vendored
2
.github/workflows/vcpkg-windows.yml
vendored
@@ -62,7 +62,7 @@ jobs:
|
||||
$isSelfHostedRunner = '${{ runner.name }}'.StartsWith('merydeye-') ? $true : $false
|
||||
"TinyIsSelfHostedRunner=$isSelfHostedRunner" >> $env:GITHUB_ENV
|
||||
|
||||
$parallel = $isSelfHostedRunner ? 8 : 2
|
||||
$parallel = $isSelfHostedRunner ? 5 : 2
|
||||
"TinyParallel=$parallel" >> $env:GITHUB_ENV
|
||||
|
||||
$tinyormPath = Resolve-Path -Path ./main
|
||||
|
||||
Reference in New Issue
Block a user