Skip to content

Commit

Permalink
Disable Mono for Linux builds
Browse files Browse the repository at this point in the history
Also disable api-compat check until that's sorted out...
  • Loading branch information
RedMser committed May 5, 2024
1 parent 5b0977d commit f8ced51
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
fail-fast: false
matrix:
include:
- name: Editor w/ Mono (target=editor)
cache-name: linux-editor-mono
- name: Editor (target=editor)
cache-name: linux-editor
target: editor
sconsflags: module_mono_enabled=yes
bin: "./bin/godot.linuxbsd.editor.x86_64.mono"
build-mono: true
sconsflags:
bin: "./bin/godot.linuxbsd.editor.x86_64"
build-mono: false
tests: false # Disabled due freeze caused by mix Mono build and CI
doc-test: true
proj-conv: true
api-compat: true
api-compat: false # TODO: fix compatibility issues and enable again!
artifact: true

- name: Editor with doubles and GCC sanitizers (target=editor, tests=yes, dev_build=yes, scu_build=yes, precision=double, use_asan=yes, use_ubsan=yes, linker=gold)
Expand Down Expand Up @@ -69,10 +69,10 @@ jobs:
# Skip 2GiB artifact speeding up action.
artifact: false

- name: Template w/ Mono (target=template_release)
cache-name: linux-template-mono
- name: Template (target=template_release)
cache-name: linux-template
target: template_release
sconsflags: module_mono_enabled=yes
sconsflags:
build-mono: false
tests: false
artifact: true
Expand All @@ -82,7 +82,7 @@ jobs:
target: template_release
sconsflags: modules_enabled_by_default=no disable_3d=yes disable_advanced_gui=yes deprecated=no minizip=no
tests: false
artifact: true
artifact: false

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit f8ced51

Please sign in to comment.