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

Unify options for installing dependencies #2606

Merged
merged 8 commits into from
Dec 27, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'master' into unify-options
Signed-off-by: habibayassin <habibayassin@aucegypt.edu>
  • Loading branch information
habibayassin authored Dec 26, 2022
commit c5fb772e15816bd99a5b564d9e498e6a7ad96fd1
15 changes: 5 additions & 10 deletions etc/DependencyInstaller.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -251,17 +251,12 @@ _installCentosCleanUp() {
}

_installCentosPackages() {
if [[ -z $(yum list installed lcov) ]]; then
yum install -y http://downloads.sourceforge.net/ltp/lcov-1.14-1.noarch.rpm
fi
if [[ -z $(yum list installed ius-release) ]]; then
yum install -y https://repo.ius.io/ius-release-el7.rpm
fi
if [[ -z $(yum list installed epel-release) ]]; then
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
fi
yum install -y http://downloads.sourceforge.net/ltp/lcov-1.14-1.noarch.rpm
yum install -y https://repo.ius.io/ius-release-el7.rpm
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

yum update -y

yum groupinstall -y "Development Tools"
yum install -y centos-release-scl
yum install -y \
Expand All @@ -285,7 +280,7 @@ _installCentosPackages() {
python36 \
python36-devel \
python36-pip

yum install -y \
libgomp \
python36-libs \
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.