We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56bbe63 commit 0b8c1f7Copy full SHA for 0b8c1f7
ci/build.sh
@@ -29,9 +29,15 @@ declare -A PARMS
29
PARMS[--components]=core,bin
30
PARMS[--target]=install
31
PARMS[--build-dir]=build
32
-# github actions runners have 8 threads
33
-# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
34
-PARMS[-j]=8
+
+if [[ $RUNNER_NAME == *"8c-32g-300h"* ]]; then
+ # ASWF github actions runners have 8 threads
35
+ PARMS[-j]=8
36
+else
37
+ # Github actions runners have 2 threads
38
+ # https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
39
+ PARMS[-j]=2
40
+fi
41
42
# Available options for --components
43
declare -A COMPONENTS
0 commit comments