Skip to content

Commit

Permalink
Merge pull request #8809 from google/cairo
Browse files Browse the repository at this point in the history
ci: install cairo on ubuntu latest
  • Loading branch information
m4rc1e authored Jan 7, 2025
2 parents 462de4f + 480fdf2 commit de1f1fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
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

0 comments on commit de1f1fb

Please sign in to comment.