Skip to content

Commit

Permalink
GITHUB: add macos-13 CI jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Westerfeld <[email protected]>
  • Loading branch information
swesterfeld committed Jun 24, 2024
1 parent 9c3acee commit daf903f
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "${{ github.job }}-${{hashFiles ('misc/*', 'static/*')}}" }
- name: Test Build
- name: Test Static Build
run: misc/staticbuild.sh
macos:
runs-on: macos-latest
Expand All @@ -87,7 +87,25 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "${{ github.job }}-${{hashFiles ('misc/*')}}" }
- name: Test macOS Build
- name: Test macOS Build with Sanitizers
shell: bash
run: misc/macbuild.sh sanitize
macos-13:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "${{ github.job }}-${{hashFiles ('misc/*')}}" }
- name: Test macOS 13 build
shell: bash
run: misc/macbuild.sh
macos-13-sanitizers:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with: { path: "ccache", key: "${{ github.job }}-${{hashFiles ('misc/*')}}" }
- name: Test macOS 13 build with Sanitizers
shell: bash
run: misc/macbuild.sh sanitize
windows:
Expand Down

0 comments on commit daf903f

Please sign in to comment.