File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 env :
99 # Conditionally set thread limits only for Gitea runners to prevent resource exhaustion.
10- # These are set to '1' if on Gitea , otherwise they are empty and have no effect.
11- OMP_NUM_THREADS : ${{ env.GITEA_ACTIONS == 'true' && '1' || '' }}
12- MKL_NUM_THREADS : ${{ env.GITEA_ACTIONS == 'true' && '1' || '' }}
13- OPENBLAS_NUM_THREADS : ${{ env.GITEA_ACTIONS == 'true' && '1' || '' }}
14- VECLIB_MAXIMUM_THREADS : ${{ env.GITEA_ACTIONS == 'true' && '1' || '' }}
15- NUMEXPR_NUM_THREADS : ${{ env.GITEA_ACTIONS == 'true' && '1' || '' }}
10+ # These are set to '1' if the IS_GITEA var is true , otherwise they are empty and have no effect.
11+ OMP_NUM_THREADS : ${{ vars.IS_GITEA == 'true' && '1' || '' }}
12+ MKL_NUM_THREADS : ${{ vars.IS_GITEA == 'true' && '1' || '' }}
13+ OPENBLAS_NUM_THREADS : ${{ vars.IS_GITEA == 'true' && '1' || '' }}
14+ VECLIB_MAXIMUM_THREADS : ${{ vars.IS_GITEA == 'true' && '1' || '' }}
15+ NUMEXPR_NUM_THREADS : ${{ vars.IS_GITEA == 'true' && '1' || '' }}
1616 DEBIAN_FRONTEND : noninteractive
1717
1818 steps :
You can’t perform that action at this time.
0 commit comments