generated from nathanfranke/gdextension
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ccc4c38
commit aa20d33
Showing
2 changed files
with
34 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Build Terrain3D | ||
description: Uploads built package | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Run Scons, 1st attempt | ||
id: scons1 | ||
continue-on-error: true | ||
env: | ||
SCONS_CACHE: "${{ github.workspace }}/.scons-cache/" | ||
shell: sh | ||
run: | | ||
scons target='${{ matrix.target }}' platform='${{ matrix.platform }}' arch='${{ matrix.arch }}' debug_symbols=no -j2 | ||
- name: Run Scons, 2nd attempt | ||
id: scons2 | ||
if: failure() | ||
continue-on-error: true | ||
env: | ||
SCONS_CACHE: "${{ github.workspace }}/.scons-cache/" | ||
shell: sh | ||
run: | | ||
scons target='${{ matrix.target }}' platform='${{ matrix.platform }}' arch='${{ matrix.arch }}' debug_symbols=no -j2 | ||
- name: Run Scons, 3rd attempt | ||
id: scons3 | ||
if: failure() | ||
env: | ||
SCONS_CACHE: "${{ github.workspace }}/.scons-cache/" | ||
shell: sh | ||
run: | | ||
scons target='${{ matrix.target }}' platform='${{ matrix.platform }}' arch='${{ matrix.arch }}' debug_symbols=no -j2 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters