diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-17 15:43:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-17 15:43:56 +0200 |
commit | 3ae61590e1ca3d4df078f4aa728856586e828bc2 (patch) | |
tree | 8c2b6b5bed2872ad1ee6c99571f69f4929b15413 /.github/actions/godot-build/action.yml | |
parent | 87ca6a67ffb490201a07dc2f4dc15e79f4f11e43 (diff) | |
parent | ea211225754ba3fc1c2afb290bf26bd714125b24 (diff) |
Merge pull request #63087 from akien-mga/scons-num_jobs-default-max
Diffstat (limited to '.github/actions/godot-build/action.yml')
-rw-r--r-- | .github/actions/godot-build/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/godot-build/action.yml b/.github/actions/godot-build/action.yml index 7af3516f71..75f3d9ab37 100644 --- a/.github/actions/godot-build/action.yml +++ b/.github/actions/godot-build/action.yml @@ -35,5 +35,5 @@ runs: run: | echo "Building with flags:" ${{ env.SCONSFLAGS }} if ! ${{ inputs.tools }}; then rm -rf editor; fi # Ensure we don't include editor code. - scons p=${{ inputs.platform }} target=${{ inputs.target }} tools=${{ inputs.tools }} tests=${{ inputs.tests }} --jobs=2 ${{ env.SCONSFLAGS }} + scons p=${{ inputs.platform }} target=${{ inputs.target }} tools=${{ inputs.tools }} tests=${{ inputs.tests }} ${{ env.SCONSFLAGS }} ls -l bin/ |