Skip to content

Commit

Permalink
In macOS github workflow, do clang and gcc compiler
Browse files Browse the repository at this point in the history
For sanitizer, do 'address', 'undefined', and 'none'

For def_debug, do 'true' and 'false'
  • Loading branch information
dgreatwood committed Aug 22, 2024
1 parent ebb8f58 commit 57d9b16
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@
#
# SPDX-License-Identifier: Apache-2.0

# https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job

# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md

# From jobs: macos: strategy: matrix:
# os: [ 'macos-12', 'macos-13', 'macos-latest' ]
# compiler: [ 'gcc', 'clang' ]
# See:
# https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md

name: macOS libevent

Expand Down Expand Up @@ -39,14 +35,10 @@ jobs:
fail-fast: false
matrix:
os: [ 'macos-12', 'macos-13', 'macos-latest' ]
compiler: [ 'gcc' ]
sanitizer: [ 'none' ]
compiler: [ 'gcc', 'clang' ]
sanitizer: [ 'address', 'undefined', 'none' ]
tls: [ 'true', 'false' ]
def_debug: [ 'true' ]

# sanitizer: [ 'address', 'undefined', 'none' ]
# tls: [ 'true', 'false' ]
# def_debug: [ 'true', 'false' ]
def_debug: [ 'true', 'false' ]

steps:
- name: Install dependencies (macOS)
Expand Down

0 comments on commit 57d9b16

Please sign in to comment.