Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ jobs:
if: contains(matrix.os, 'centos') || contains(matrix.os, 'fedora')
run: |
yum update -y
yum groupinstall "Development Tools" -y
if [[ ${{ matrix.os }} == "quay.io/centos/centos:stream9" ]]; then
yum groupinstall "Development Tools" -y
else
yum group install "development-tools" -y
fi
yum install python3 \
python3-pip \
wget \
Expand Down Expand Up @@ -351,7 +355,7 @@ jobs:
chmod +x package_CentOS/opt/ansys_python_manager/ansys_python_manager
version=v`cat ./src/ansys/tools/installer/VERSION`
echo "APPLICATION_VERSION=$version" >> $GITHUB_ENV
fpm -v $version --fpm-options-file linux/non-debian/fpm-options-centos
fpm -v $version --fpm-options-file linux/non-debian/fpm-options-centos --verbose
cp ./linux/non-debian/installer_CentOS.sh installer_CentOS.sh
cp ./linux/non-debian/updater_CentOS.sh updater_CentOS.sh
chmod +x installer_CentOS.sh updater_CentOS.sh ansys_python_manager_CentOS.rpm
Expand All @@ -374,7 +378,7 @@ jobs:
chmod +x package_Fedora/opt/ansys_python_manager/ansys_python_manager
version=v`cat ./src/ansys/tools/installer/VERSION`
echo "APPLICATION_VERSION=$version" >> $GITHUB_ENV
fpm -v $version --fpm-options-file linux/non-debian/fpm-options-fedora
fpm -v $version --fpm-options-file linux/non-debian/fpm-options-fedora --verbose
cp ./linux/non-debian/installer_CentOS.sh installer_Fedora.sh
cp ./linux/non-debian/updater_CentOS.sh updater_Fedora.sh
chmod +x installer_Fedora.sh updater_Fedora.sh ansys_python_manager_Fedora.rpm
Expand Down
2 changes: 1 addition & 1 deletion doc/source/installer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Installing the ``Ansys Python Manager``
.. code:: shell

sudo yum update -y;
sudo yum groupinstall 'Development Tools' -y;
sudo yum group install 'Development Tools' -y;
sudo yum install wget gnome-terminal libffi-devel openssl-devel rpm-build sqlite-devel sqlite-libs libXinerama-devel coreutils -y;

#. Install **zlib** package using **wget**
Expand Down
Loading