Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VaeterchenFrost committed Dec 17, 2024
1 parent 06fe8a0 commit e760988
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,16 @@ jobs:
- name: Setup Graphviz
run: |
wget https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/12.2.1/graphviz-12.2.1.tar.gz
sha256sum graphviz-12.2.1.tar.gz
wget -nv https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/12.2.1/graphviz-12.2.1.tar.gz
if [[(sha256sum graphviz-12.2.1.tar.gz) != "242bc18942eebda6db4039f108f387ec97856fc91ba47f21e89341c34b554df8 graphviz-12.2.1.tar.gz" ]]; then
exit 1
fi
# extract
tar -xzf graphviz-12.2.1.tar.gz
# dev dependencies
sudo apt-get install -y libgraphviz-dev pkg-config
# build sources
cd graphviz-12.2.1
./configure
make
make install
Expand Down

0 comments on commit e760988

Please sign in to comment.