Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing CICD: Adding missing libgomp1 dependency #2514

Merged
merged 11 commits into from
Nov 20, 2023
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ jobs:
- name: "Install OS packages"
run: |
apt update
apt install -y libgl1-mesa-glx xvfb
apt install -y libgl1-mesa-glx xvfb libgomp1

- name: "Test virtual framebuffer"
run: |
Expand Down Expand Up @@ -629,6 +629,11 @@ jobs:
python -m pip install -r minimum_requirements.txt
python -c "from ansys.mapdl import core as pymapdl; print('Import successfull')"

- name: "Installing missing package"
run: |
sudo apt-get update
sudo apt-get install -y libgomp1

- name: "Unit testing requirements installation"
run: |
python -m pip install pytest pytest-rerunfailures pytest-cov
Expand Down
Loading