-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Homebrew has updated the default version of FLTK to 1.4, which is causing rendering issues in Dillo. So for now, we build with FLTK 1.3 by pinning it. See: Homebrew/homebrew-core#198029 See: #246
- Loading branch information
Showing
2 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -180,17 +180,21 @@ jobs: | |
with: | ||
fetch-depth: 1 | ||
- name: Install dependencies | ||
run: brew install autoconf automake fltk | ||
run: brew install autoconf automake fltk@1.3 | ||
- name: autogen | ||
run: ./autogen.sh | ||
- name: configure | ||
run: ./configure --disable-mbedtls | ||
run: | | ||
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | ||
./configure --disable-mbedtls | ||
- name: make | ||
run: make | ||
- name: make check | ||
run: make check | ||
- name: make distcheck | ||
run: make distcheck | ||
run: | | ||
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | ||
make distcheck | ||
macOS-13-openssl-3: | ||
needs: ubuntu-latest-html-tests | ||
runs-on: macos-13 | ||
|
@@ -201,17 +205,21 @@ jobs: | |
- name: Remove old OpenSSL 1.1 | ||
run: brew uninstall [email protected] | ||
- name: Install dependencies | ||
run: brew install autoconf automake fltk openssl@3 | ||
run: brew install autoconf automake fltk@1.3 openssl@3 | ||
- name: autogen | ||
run: ./autogen.sh | ||
- name: configure | ||
run: ./configure --disable-mbedtls | ||
run: | | ||
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | ||
./configure --disable-mbedtls | ||
- name: make | ||
run: make | ||
- name: make check | ||
run: make check | ||
- name: make distcheck | ||
run: make distcheck | ||
run: | | ||
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | ||
make distcheck | ||
freebsd-14-openssl-3: | ||
needs: ubuntu-latest-html-tests | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters