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 18, 2024
1 parent c6ec3d5 commit fec4642
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
run: |
wget -nv https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/12.2.1/graphviz-12.2.1.tar.gz
graphviz_12_sha256="242bc18942eebda6db4039f108f387ec97856fc91ba47f21e89341c34b554df8 graphviz-12.2.1.tar.gz"
calculated_hash=$(sha256sum graphviz-12.2.1.tar.gz)
if [["$calculated_hash" != "$graphviz_12_sha256" ]]; then
if [[ "$(sha256sum graphviz-12.2.1.tar.gz)" != "$graphviz_12_sha256" ]]; then
echo "The file is corrupted, calculated_hash: $calculated_hash"
exit 1
fi
Expand All @@ -46,10 +45,10 @@ jobs:
- name: Install Graphviz
run: |
cd graphviz-12.2.1
./configure --prefix=$PWD/bin
./configure --prefix=$PWD/out
make --quiet
make install --quiet
echo "$PWD/bin" >> $GITHUB_ENV
echo "$PWD/out/bin" >> $GITHUB_PATH
dot -V
- name: Install Workflow dependencies
Expand Down

0 comments on commit fec4642

Please sign in to comment.