summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAlula <6276139+alula@users.noreply.github.com>2024-05-24 15:07:22 +0200
committerThaddeus Crews <repiteo@outlook.com>2024-08-28 13:30:44 -0500
commit346cbc7f1f206f4540520a92bf7def97b9be0af8 (patch)
tree54b1ec735002410018bccb9e5fc36514adccb667 /.github
parentf648de1a83cf006dbfdaa075219ad4348628e58f (diff)
downloadredot-engine-346cbc7f1f206f4540520a92bf7def97b9be0af8.tar.gz
Add support for compiling with VS clang-cl toolset
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows_builds.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml
index 90629204e6..0c21576517 100644
--- a/.github/workflows/windows_builds.yml
+++ b/.github/workflows/windows_builds.yml
@@ -30,6 +30,14 @@ 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
+
+ - 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
- name: Template (target=template_release)
cache-name: windows-template
@@ -37,6 +45,7 @@ jobs:
tests: true
sconsflags: debug_symbols=no tests=yes
bin: "./bin/godot.windows.template_release.x86_64.console.exe"
+ artifact: true
steps:
- uses: actions/checkout@v4
@@ -84,10 +93,12 @@ jobs:
continue-on-error: true
- name: Prepare artifact
+ if: ${{ matrix.artifact }}
run: |
Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force
- name: Upload artifact
+ if: ${{ matrix.artifact }}
uses: ./.github/actions/upload-artifact
with:
name: ${{ matrix.cache-name }}