-
Why are you starting this discussion?Question What GitHub Actions topic or product is this about?Actions Runner Image Discussion DetailsHi there, |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 5 replies
-
|
Hey 👋, A quick fix is to make sure the GTK/cairo binaries are installed and added to the PATH in your job. You can do something like this in your GitHub Action: jobs: If that path doesn’t exist in your runner, another option is to install GTK directly via Chocolatey before installing your Python deps:
That usually solves the missing DLL issue because cairocffi then finds the cairo DLLs automatically. So in short: Make sure GTK/cairo is installed. Add its bin folder to PATH in your workflow. After that, mkdocs build should run fine on windows-latest. 🚀 |
Beta Was this translation helpful? Give feedback.
-
|
Thanks, I wil try. I think @Kozea himself does this GTK3 instgallation step in his test script https://github.com/Kozea/cairocffi/blob/main/.github/workflows/tests.yml. |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
Unfortunately the hints so far did not fix the problem. |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
-
|
Hi there, problem solved with own answer on Sep 30th based on further own testings, no further comments so marked as closed. |
Beta Was this translation helpful? Give feedback.
Hurray, with path "C:\Program Files\Unity Hub\resources\app.asar.unpacked\node_modules\canvas\build\Release" it works!