Skip to content

Commit

Permalink
fix build again
Browse files Browse the repository at this point in the history
  • Loading branch information
3ll3d00d committed Oct 30, 2024
1 parent ab0e76a commit e1a25db
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/create-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction
- name: Install project
run: poetry install --no-interaction
run: |
poetry install --no-interaction
if [[ "$RUNNER_OS" == "Linux" ]]
then
sudo apt install -y libegl1
fi
- name: pytest
run: |
PYTHONPATH=./src/main/python poetry run pytest --cov=./src/main/python
Expand All @@ -65,7 +70,7 @@ jobs:
if [[ "$RUNNER_OS" == "Linux" ]]
then
sudo apt install -y libblas-dev liblapack-dev libsndfile1 graphviz
sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 libxcb-util1 libxcb-xkb1 libxcb-shape0 libegl1
sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 libxcb-util1 libxcb-xkb1 libxcb-shape0
elif [[ "$RUNNER_OS" == "Windows" ]]
then
choco install openssl.light graphviz
Expand Down

0 comments on commit e1a25db

Please sign in to comment.