-
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: Run macOS tests on m1 processor (#1141)
* ci: Run macOS tests on m1 processor * ci: Install weasyprint with homebrew * test: Rename draft-miek-test.v3.xml The macOS tox tests in GHA gets confused this with the v3 converted file of the non v2 version.
- Loading branch information
Showing
4 changed files
with
12 additions
and
4 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 |
---|---|---|
|
@@ -97,7 +97,7 @@ jobs: | |
|
||
tests-macos: | ||
name: Unit Tests (macOS) | ||
runs-on: macos-12 | ||
runs-on: macos-latest | ||
if: github.event_name == 'pull_request' | ||
|
||
strategy: | ||
|
@@ -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
File renamed without changes.
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 | ||
|