forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'godotengine:master' into 4.x
- Loading branch information
Showing
1,099 changed files
with
69,561 additions
and
19,965 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -30,22 +30,32 @@ jobs: | |
# Skip debug symbols, they're way too big with MSVC. | ||
sconsflags: debug_symbols=no vsproj=yes vsproj_gen_only=no windows_subsystem=console | ||
bin: ./bin/godot.windows.editor.x86_64.exe | ||
artifact: true | ||
compiler: msvc | ||
|
||
- name: Editor w/ clang-cl (target=editor, tests=yes, use_llvm=yes) | ||
cache-name: windows-editor-clang | ||
target: editor | ||
tests: true | ||
sconsflags: debug_symbols=no windows_subsystem=console use_llvm=yes | ||
bin: ./bin/godot.windows.editor.x86_64.llvm.exe | ||
compiler: clang | ||
|
||
- name: Template (target=template_release, tests=yes) | ||
cache-name: windows-template | ||
target: template_release | ||
tests: true | ||
sconsflags: debug_symbols=no | ||
bin: ./bin/godot.windows.template_release.x86_64.console.exe | ||
artifact: true | ||
compiler: msvc | ||
|
||
- name: Template w/ GCC (target=template_release, tests=yes, use_mingw=yes) | ||
cache-name: windows-template-gcc | ||
# MinGW takes MUCH longer to compile; save time by only targeting Template. | ||
target: template_release | ||
tests: true | ||
sconsflags: debug_symbols=no use_mingw=yes | ||
bin: ./bin/godot.windows.template_release.x86_64.console.exe | ||
compiler: gcc | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -69,16 +79,21 @@ jobs: | |
uses: dsaltares/[email protected] | ||
with: | ||
repo: godotengine/godot-angle-static | ||
version: tags/chromium/6029 | ||
file: Windows.6029-1.MSVC_17.x86_64.x86_32.zip | ||
version: tags/chromium/6601.2 | ||
file: godot-angle-static-x86_64-${{ matrix.compiler == 'gcc' && 'gcc' || 'msvc' }}-release.zip | ||
target: angle/angle.zip | ||
|
||
- name: Extract pre-built ANGLE static libraries | ||
run: Expand-Archive -Force angle/angle.zip ${{ github.workspace }}/ | ||
|
||
- name: Setup MSVC problem matcher | ||
if: matrix.compiler == 'msvc' | ||
uses: ammaraskar/msvc-problem-matcher@master | ||
|
||
- name: Setup GCC problem matcher | ||
if: matrix.compiler != 'msvc' | ||
uses: ammaraskar/gcc-problem-matcher@master | ||
|
||
- name: Compilation | ||
uses: ./.github/actions/godot-build | ||
with: | ||
|
@@ -94,12 +109,12 @@ jobs: | |
continue-on-error: true | ||
|
||
- name: Prepare artifact | ||
if: ${{ matrix.artifact }} | ||
if: matrix.compiler == 'msvc' | ||
run: | | ||
Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force | ||
- name: Upload artifact | ||
if: ${{ matrix.artifact }} | ||
if: matrix.compiler == 'msvc' | ||
uses: ./.github/actions/upload-artifact | ||
with: | ||
name: ${{ matrix.cache-name }} | ||
|
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
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
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
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env python | ||
from misc.utility.scons_hints import * | ||
|
||
Import("env") | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env python | ||
from misc.utility.scons_hints import * | ||
|
||
Import("env") | ||
|
||
|
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
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
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
Oops, something went wrong.