Skip to content

Commit

Permalink
fix sanitizers
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesnicholson committed Dec 29, 2023
1 parent d4759f1 commit 1a65a6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: COBS_SANITIZE=1 make -j
run: CC=clang CXX=clang++ COBS_SANITIZE=1 make -j

arm-cm4:
runs-on: ubuntu-latest
Expand All @@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: CC=clang CXX=clang++ arm-none-eabi-gcc -mcpu=cortex-m4 -Os -Werror -Wall -Wextra -Wconversion -c cobs.c
run: arm-none-eabi-gcc -mcpu=cortex-m4 -Os -Werror -Wall -Wextra -Wconversion -c cobs.c

linux:
name: linux (${{ matrix.compiler.name }}, ${{ matrix.architecture }})
Expand Down

0 comments on commit 1a65a6b

Please sign in to comment.