Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a fix for the mono artifacts not uploading #4

Merged
merged 1 commit into from
Nov 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ jobs:
fail-fast: false
matrix:
include:
- name: Editor (target=editor tests=yes)
cache-name: linux-editor
target: editor
bin: ./bin/merlin.linuxbsd.editor.x86_64
build-mono: false
tests: true
doc-test: true
proj-conv: true
api-compat: true
artifact: true

- name: Editor w/ Mono (target=editor)
cache-name: linux-editor-mono
target: editor
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/windows_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
proj-conv: true
api-compat: true
artifact: true
compiler: msvc

- name: Editor w/ clang-cl (target=editor, tests=yes, use_llvm=yes)
cache-name: windows-editor-clang
Expand Down Expand Up @@ -130,6 +131,7 @@ jobs:

- name: Prepare artifact
if: matrix.compiler == 'msvc'
shell: pwsh
run: |
Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force

Expand All @@ -138,6 +140,7 @@ jobs:
uses: ./.github/actions/upload-artifact
with:
name: ${{ matrix.cache-name }}
path: bin/**

- name: Unit tests
if: matrix.tests
Expand Down
Loading