Skip to content

Commit

Permalink
Fixing CICD: Adding missing libgomp1 dependency (#2514)
Browse files Browse the repository at this point in the history
* Reducing the amount to time

* testing launching MAPDL

* moving step to minimal

* testing MAPDL launcher

* testing missing library

* adding sudo update

* Adding -y

* check

* Adding missing package to ubuntu local

* Removing stuff

* Revert "Reducing the amount to time"

This reverts commit c4cdd05.
  • Loading branch information
germa89 authored Nov 20, 2023
1 parent 949b8d8 commit 286f90e
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit 286f90e

Please sign in to comment.