diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bad8eebe6f..5af6400a7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | @@ -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