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

Fix mac os CI #346

Merged
merged 2 commits into from
Jun 26, 2023
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
6 changes: 5 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade meson PyYAML
brew install libxml2 doxygen bison ninja
brew install libxml2 bison ninja graphviz
# HACK: force Doxygen version 1.9.6, because 1.9.7 breaks our cool URIs.
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-core/d2267b9f2ad247bc9c8273eb755b39566a474a70/Formula/doxygen.rb
brew install --formula doxygen.rb
rm doxygen.rb
brew link bison --force
env:
HOMEBREW_NO_AUTO_UPDATE: 1
Expand Down
2 changes: 1 addition & 1 deletion scripts/ensure-stable-doc-urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def generate_redirections(registry_path: Path, doc_dir: Path):
cool = False
print(
f"ERROR: missing canonical documentation page “{canonical}”. "
f"Please update “{registry_path}” using b{RELATIVE_SCRIPT_PATH}”."
f"Please update “{registry_path}” using {RELATIVE_SCRIPT_PATH}”."
)
# Add a redirection page
for alias in aliases:
Expand Down