-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Install weasyprint with homebrew
- Loading branch information
Showing
2 changed files
with
10 additions
and
2 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 |
---|---|---|
|
@@ -131,14 +131,19 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
brew install pango pillow libffi groff make diffutils | ||
brew install make diffutils | ||
# Install WeasyPrint 61.2 | ||
brew tap-new --no-git custom/weasyprint | ||
brew extract --git-revision edb83fc7c8bb9987bdecb810e61281c5adc47c73 weasyprint custom/weasyprint | ||
brew install [email protected] | ||
echo "Installing pip + wheel..." | ||
python -m pip install --upgrade pip wheel | ||
echo "Installing requirements.txt + test dependencies..." | ||
python -m pip install -r requirements.txt tox tox-gh-actions certifi decorator dict2xml pyflakes "pypdf>=4.1.0" "weasyprint==61.2" "pydyf<0.10.0" | ||
- name: Generate Valid Tests | ||
run: | | ||
export DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib:$DYLD_FALLBACK_LIBRARY_PATH | ||
echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH | ||
make yestests || true | ||
cp -af tests/out/. tests/valid | ||
|
@@ -147,8 +152,9 @@ jobs: | |
env: | ||
PLATFORM: macos-latest | ||
run: | | ||
export DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib:$DYLD_FALLBACK_LIBRARY_PATH | ||
echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH | ||
tox | ||
env 'TOX_OVERRIDE=testenv.pass_env+=DYLD_FALLBACK_LIBRARY_PATH' tox | ||
# tests-windows: | ||
# name: Unit Tests (Windows) | ||
|
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 |
---|---|---|
|
@@ -29,6 +29,8 @@ commands = | |
|
||
allowlist_externals = | ||
make | ||
diff | ||
groff | ||
|
||
deps = | ||
pyflakes | ||
|