-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #675 from pneerincx/fix/openssl
Fix for compilation issues.
- Loading branch information
Showing
7 changed files
with
99 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
build_env_generic_deps: | ||
- '@development' | ||
- 'glibc-common' | ||
- 'glibc-devel' | ||
- 'glibc-headers' | ||
- 'gnutls-devel' | ||
- 'intltool' | ||
- 'kernel-devel' | ||
- 'libselinux-devel' | ||
- 'libsodium-devel' | ||
- 'openssl-devel' | ||
- 'patch' | ||
- 'qt5-qtbase-devel' | ||
- 'qt5-qtxmlpatterns-devel' | ||
- 'rpm-build' | ||
build_env_optional_deps: | ||
- 'openssl11' | ||
build_env_dai_deps: | ||
# | ||
# Slurm dependencies. | ||
# | ||
- 'readline-devel' | ||
- 'pkgconfig' | ||
- 'perl-ExtUtils-MakeMaker' | ||
- 'perl' | ||
- 'pam-devel' | ||
- 'numactl-devel' | ||
- 'nss-softokn-freebl' | ||
- 'ncurses-devel' | ||
- 'mysql-devel' | ||
- 'munge-libs' | ||
- 'munge-devel' | ||
- 'mariadb-devel' | ||
- 'man2html' | ||
- 'lua-devel' | ||
- 'hwloc-devel' | ||
- 'hdf5-devel' | ||
# | ||
# Ansible dependencies. | ||
# | ||
- 'python-devel' # Previously python2-devel | ||
- 'python-nose' | ||
- 'python-coverage' | ||
- 'python-mock' | ||
- 'python-boto3' | ||
- 'python-botocore' | ||
- 'python-ldap' | ||
- 'python-passlib' | ||
- 'python2-sphinx-theme-alabaster' | ||
- 'pytest' | ||
# | ||
# Lua, Lmod, EasyBuild dependencies. | ||
# | ||
- 'rdma-core-devel' # first was 'rmda-core-devel', then some period 'mlnx-ofa_kernel-devel', now is rdma again | ||
- 'libxml2-devel' | ||
- 'libXext-devel' | ||
- 'libX11-devel' | ||
- 'python-pep8' | ||
- 'python3' | ||
- 'python3-pip' | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
- name: Install mandatory build depedencies. | ||
ansible.builtin.yum: | ||
state: latest | ||
update_cache: true | ||
name: "{{ mandatory_deps | default([]) }}" | ||
become: true | ||
|
||
- name: Gather list of installed package. | ||
ansible.builtin.package_facts: | ||
manager: auto | ||
become: true | ||
|
||
- name: Install corresponding development package if a specific, optional package was installed. | ||
ansible.builtin.yum: | ||
state: latest | ||
update_cache: true | ||
name: | ||
- "{{ item }}-devel" | ||
when: | ||
- "item in ansible_facts.packages" | ||
with_items: "{{ optional_deps | default([]) }}" | ||
become: true | ||
... |
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
roles/build_environment/tasks/generic_build_dependencies.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters