Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: install cairo on ubuntu latest #8809

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install Cairo (Ubuntu)
run: sudo apt-get install libcairo2-dev
# Check to_sandbox.txt and to_production.txt do not contain typos
- name: Install gftools
run: pip install gftools[qa]
Expand All @@ -42,6 +43,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Cairo (Ubuntu)
run: sudo apt-get install libcairo2-dev

# Check Knowledge link graph
- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/knowledge_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ def _check_outbound_link(url: str):
'webmd.com',
"jessicahische.is",
"type.method.ac",
"dev.epicgames.com", # Returns a 403 response when using requests
])
# Following urls will be fixed at a later date. If the CI is failing and a suitable
# replacement url cannot be found, please add them to this set.
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Cairo (Ubuntu)
run: sudo apt-get install libcairo2-dev
- name: Install dependencies
run: pip install gftools[qa]
- name: Generate report
Expand Down
Loading