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

ci: temporary disable ASan/UBSan builds #3676

Merged
merged 1 commit into from
Nov 15, 2023
Merged
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
Disable Asan/UBSan builds
  • Loading branch information
olanti-p committed Nov 15, 2023
commit 46fe6e16a58e1916b435e956320b8fdfee3d99e0
48 changes: 25 additions & 23 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,30 +109,32 @@ jobs:
ccache_limit: 1G
ccache_key: linux-gcc-12-tiles

- title: GCC 12, Ubuntu, Tiles, NoSound, ASan
compiler: g++-12
os: ubuntu-22.04
cmake: 0
tiles: 1
sound: 0
lua: 0
sanitize: address
native: linux64
ccache_limit: 2G
ccache_key: linux-gcc-12-asan
# === Temporarily disabled because of #3664 ===
# - title: GCC 12, Ubuntu, Tiles, NoSound, ASan
# compiler: g++-12
# os: ubuntu-22.04
# cmake: 0
# tiles: 1
# sound: 0
# lua: 0
# sanitize: address
# native: linux64
# ccache_limit: 2G
# ccache_key: linux-gcc-12-asan

- title: Clang 14, Ubuntu, Tiles, NoSound, ASan, UBSan
compiler: clang++-14
os: ubuntu-22.04
cmake: 0
tiles: 1
sound: 0
lua: 0
sanitize: address,undefined
cxxflags: --gcc-toolchain=/opt/mock-gcc-11
native: linux64
ccache_limit: 2G
ccache_key: linux-llvm-14-asan
# === Temporarily disabled because of #3664 ===
# - title: Clang 14, Ubuntu, Tiles, NoSound, ASan, UBSan
# compiler: clang++-14
# os: ubuntu-22.04
# cmake: 0
# tiles: 1
# sound: 0
# lua: 0
# sanitize: address,undefined
# cxxflags: --gcc-toolchain=/opt/mock-gcc-11
# native: linux64
# ccache_limit: 2G
# ccache_key: linux-llvm-14-asan

- title: Clang 14, macOS 12, Tiles, Sound, Localize, Lua
compiler: clang++
Expand Down
Loading