Skip to content

Commit

Permalink
Add macOS 13 build in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rodarima committed Dec 24, 2023
1 parent 900a305 commit 5d1bf90
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on: [push]

jobs:
build-no-tls:
ubuntu-latest-no-tls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand All @@ -21,7 +21,7 @@ jobs:
run: make check
- name: make distcheck
run: make distcheck
build-mbedtls2:
ubuntu-latest-mbedtls2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand All @@ -39,7 +39,7 @@ jobs:
run: make check
- name: make distcheck
run: make distcheck
build-openssl-3:
ubuntu-latest-openssl-3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand All @@ -57,7 +57,7 @@ jobs:
run: make check
- name: make distcheck
run: make distcheck
build-openssl-1-1:
ubuntu-20-04-openssl-1-1:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
Expand All @@ -75,3 +75,21 @@ jobs:
run: make check
- name: make distcheck
run: make distcheck
macOS-13-openssl-1-1:
runs-on: macos-13
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Install FLTK
run: brew install fltk
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --disable-mbedtls
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck

0 comments on commit 5d1bf90

Please sign in to comment.