Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbonfield committed Jun 25, 2024
1 parent 7c80a2a commit caa2ac7
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/unix-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,24 @@ jobs:
autoreconf -i
./configure CFLAGS="-g -O3 -Wall -Werror -arch arm64 -arch x86_64"
- name: Ubuntu-20 is with clang, default opts
if: runner.os == 'Linux'
- name: not macos
if: runner.os != 'macOS' }}
run: |
apt-get install clang
autoreconf -i
./configure CC=clang
- name: Ubuntu-latest using gcc with sanitizers
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
autoreconf -i
./configure CC="gcc -fsanitize=address,undefined"
./configure
# - name: Ubuntu-20 is with clang, default opts
# if: runner.os == 'Linux'
# run: |
# apt-get install clang
# autoreconf -i
# ./configure CC=clang
#
# - name: Ubuntu-latest using gcc with sanitizers
# if: ${{ matrix.os == 'ubuntu-latest' }}
# run: |
# autoreconf -i
# ./configure CC="gcc -fsanitize=address,undefined"

- name: Compile
run: |
Expand Down

0 comments on commit caa2ac7

Please sign in to comment.