Skip to content
Snippets Groups Projects
Commit 343fef97 authored by Louis Moureaux's avatar Louis Moureaux
Browse files

Install openssl-devel instead of hard-coding libssl.so symlinks

parent 256bf04d
No related branches found
No related tags found
1 merge request!14Install openssl-devel in CI
...@@ -4,28 +4,18 @@ compilation: ...@@ -4,28 +4,18 @@ compilation:
stage: build stage: build
tags: tags:
- cvmfs - cvmfs
before_script:
- cd /lib64
- ln -s libssl.so.1.1.1k libssl.so
- ln -s libcrypto.so.1.1.1k libcrypto.so
- cd -
script: script:
- source /cvmfs/cms.cern.ch/cmsset_default.sh - source /cvmfs/cms.cern.ch/cmsset_default.sh
- yum install -y python3 zsh - yum install -y openssl-devel python3 zsh
- make - make
cmake: cmake:
stage: build stage: build
tags: tags:
- cvmfs - cvmfs
before_script:
- cd /lib64
- ln -s libssl.so.1.1.1k libssl.so
- ln -s libcrypto.so.1.1.1k libcrypto.so
- cd -
script: script:
- source /cvmfs/cms.cern.ch/cmsset_default.sh - source /cvmfs/cms.cern.ch/cmsset_default.sh
- yum install -y cmake3 python3 zsh - yum install -y cmake3 openssl-devel python3 zsh
- ./install.sh - ./install.sh
- cd CMSSW*/ - cd CMSSW*/
- shopt -s expand_aliases # allows aliases like cmsenv to be used - shopt -s expand_aliases # allows aliases like cmsenv to be used
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment