Skip to content
Closed
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
build: use clang over g++ for ubsan
  • Loading branch information
H4ad committed Mar 21, 2024
commit 5efaa76a99d6338dc6de09dfaedf3b1c4e0ea025
6 changes: 3 additions & 3 deletions .github/workflows/test-ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-20.04
env:
CC: gcc
CXX: g++
LINK: g++
CC: clang
CXX: clang++
LINK: clang++
CONFIG_FLAGS: --enable-ubsan
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down