bito-code-review[bot] commented on PR #42498:
URL: https://github.com/apache/superset/pull/42498#issuecomment-5196974883
<!-- Bito Reply -->
The `cache-apt-pkgs-action` by default does not execute post-install
scripts, which explains why Graphviz's `config6a` file is not generated. To
resolve this, you can enable `execute_install_scripts: true` in the action's
configuration. Additionally, adding a smoke test like `dot -V` or `dot -c`
after the installation step is a recommended practice to verify that the
environment is correctly configured for Graphviz.
**.github/workflows/superset-docs-deploy.yml**
```
- name: Install Graphviz
uses:
awalsh128/cache-apt-pkgs-action@553a35bb8ebd9fcabcb1c9451aa4c98e1b4ca8a9 #
v1.6.3
with:
packages: graphviz
version: 1.0
execute_install_scripts: true
- name: Smoke check Graphviz
run: dot -V
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]