Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,32 +197,36 @@ jobs:
make
make check
shell: alpine.sh {0}
macOS-13-openssl-1-1:
macOS-14-openssl-1-1:
needs: ubuntu-latest-html-tests
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Install dependencies
run: brew install autoconf automake fltk@1.3
run: brew install autoconf automake fltk@1.3 openssl@1.1
- name: autogen
run: ./autogen.sh
- name: configure
run: |
export PATH="/usr/local/opt/fltk@1.3/bin:$PATH"
export PATH="/opt/homebrew/opt/fltk@1.3/bin:$PATH"
export LDFLAGS="-L$(brew --prefix openssl@1.1)/lib"
export CPPFLAGS="-I$(brew --prefix openssl@1.1)/include"
./configure --disable-mbedtls
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: |
export PATH="/usr/local/opt/fltk@1.3/bin:$PATH"
export PATH="/opt/homebrew/opt/fltk@1.3/bin:$PATH"
export LDFLAGS="-L$(brew --prefix openssl@1.1)/lib"
export CPPFLAGS="-I$(brew --prefix openssl@1.1)/include"
make distcheck
macOS-13-openssl-3:
macOS-14-openssl-3:
needs: ubuntu-latest-html-tests
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v1
with:
Expand All @@ -235,15 +239,19 @@ jobs:
run: ./autogen.sh
- name: configure
run: |
export PATH="/usr/local/opt/fltk@1.3/bin:$PATH"
export PATH="/opt/homebrew/opt/fltk@1.3/bin:$PATH"
export LDFLAGS="-L$(brew --prefix openssl@3)/lib"
export CPPFLAGS="-I$(brew --prefix openssl@3)/include"
./configure --disable-mbedtls
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: |
export PATH="/usr/local/opt/fltk@1.3/bin:$PATH"
export PATH="/opt/homebrew/opt/fltk@1.3/bin:$PATH"
export LDFLAGS="-L$(brew --prefix openssl@3)/lib"
export CPPFLAGS="-I$(brew --prefix openssl@3)/include"
make distcheck
freebsd-14-openssl-3:
needs: ubuntu-latest-html-tests
Expand Down
Loading