From 286f90e0fe4163b6b126a63a446187b31a93f2aa Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Mon, 20 Nov 2023 15:23:26 +0100 Subject: [PATCH] Fixing CICD: Adding missing `libgomp1` dependency (#2514) * 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 c4cdd05386e081bcfe60efb86dbfad7deb69239a. --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58966a26c7..becb5eaceb 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