Skip to content

Commit

Permalink
Merge pull request #45727 from akien-mga/ci-linux-swap-mono
Browse files Browse the repository at this point in the history
CI: Build Linux editor without Mono, sanitizers with Mono
  • Loading branch information
akien-mga authored Feb 5, 2021
2 parents 54857d7 + d6404fd commit 80a4d0f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ env:
SCONS_CACHE_LIMIT: 4096

jobs:
linux-editor-mono:
linux-editor:
runs-on: "ubuntu-20.04"
name: Editor w/ Mono (target=release_debug, tools=yes, tests=yes)
name: Editor (target=release_debug, tools=yes, tests=yes)

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -62,23 +62,23 @@ jobs:
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons tools=yes tests=yes target=release_debug module_mono_enabled=yes mono_glue=no
scons tools=yes tests=yes target=release_debug
ls -l bin/
# Execute unit tests for the editor
- name: Unit Tests
run: |
./bin/godot.linuxbsd.opt.tools.64.mono --test
./bin/godot.linuxbsd.opt.tools.64 --test
- uses: actions/upload-artifact@v2
with:
name: ${{ github.job }}
path: bin/*
retention-days: 14

linux-editor-sanitizers:
linux-editor-sanitizers-mono:
runs-on: "ubuntu-20.04"
name: Editor with sanitizers (target=debug, tools=yes, tests=yes, use_asan=yes, use_ubsan=yes)
name: Editor w/ Mono and sanitizers (target=debug, tools=yes, tests=yes, use_asan=yes, use_ubsan=yes)

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -130,13 +130,13 @@ jobs:
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons tools=yes tests=yes target=debug use_asan=yes use_ubsan=yes
scons tools=yes tests=yes target=debug module_mono_enabled=yes mono_glue=no use_asan=yes use_ubsan=yes
ls -l bin/
# Execute unit tests for the editor
- name: Unit Tests
run: |
./bin/godot.linuxbsd.tools.64s --test
./bin/godot.linuxbsd.tools.64s.mono --test
linux-template-mono:
runs-on: "ubuntu-20.04"
Expand Down

0 comments on commit 80a4d0f

Please sign in to comment.