diff --git a/.github/workflows/analyzers.yml b/.github/workflows/analyzers.yml index a095f233c..87220000a 100644 --- a/.github/workflows/analyzers.yml +++ b/.github/workflows/analyzers.yml @@ -7,6 +7,9 @@ on: - gh-actions - silverqx-develop +concurrency: + group: tinyorm + jobs: analyzers: diff --git a/.github/workflows/vcpkg-linux.yml b/.github/workflows/vcpkg-linux.yml index 84f4ef04b..7751fcab2 100644 --- a/.github/workflows/vcpkg-linux.yml +++ b/.github/workflows/vcpkg-linux.yml @@ -11,6 +11,9 @@ on: - gh-actions - silverqx-develop +concurrency: + group: tinyorm + # I will not remove the build folders before a job execution it's not necessary and # it will be faster this way. I can still remove them manually if needed or # if something goes wrong. @@ -68,7 +71,7 @@ jobs: [[ "${{ runner.name }}" == 'merydeye-'* ]] && isSelfHostedRunner='true' || isSelfHostedRunner='false' echo "TinyIsSelfHostedRunner=$isSelfHostedRunner" >> $GITHUB_ENV - [[ "$isSelfHostedRunner" == 'true' ]] && parallel=4 || parallel=2 + [[ "$isSelfHostedRunner" == 'true' ]] && parallel=10 || parallel=2 echo "TinyParallel=$parallel" >> $GITHUB_ENV tinyormPath=$(realpath ./main) diff --git a/.github/workflows/vcpkg-windows.yml b/.github/workflows/vcpkg-windows.yml index 565089da6..e1177feee 100644 --- a/.github/workflows/vcpkg-windows.yml +++ b/.github/workflows/vcpkg-windows.yml @@ -7,6 +7,9 @@ on: - gh-actions - silverqx-develop +concurrency: + group: tinyorm + # I will not remove the build folders before a job execution it's not necessary and # it will be faster this way. I can still remove them manually if needed or # if something goes wrong. @@ -63,7 +66,7 @@ jobs: $isSelfHostedRunner = '${{ runner.name }}'.StartsWith('merydeye-', $true, $null) "TinyIsSelfHostedRunner=$isSelfHostedRunner" >> $env:GITHUB_ENV - $parallel = $isSelfHostedRunner ? 5 : 2 + $parallel = $isSelfHostedRunner ? 10 : 2 "TinyParallel=$parallel" >> $env:GITHUB_ENV $tinyormPath = Resolve-Path -Path ./main