Skip to content

Commit

Permalink
Merge branch '2023.06-software.eessi.io' of github.com:EESSI/software…
Browse files Browse the repository at this point in the history
…-layer into software_rebuilds
  • Loading branch information
bedroge committed Mar 26, 2024
2 parents 57d8b6f + b9d32f0 commit bde75ee
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ easyconfigs:
- ipympl-0.9.3-foss-2023a.eb:
options:
from-pr: 20126
- OpenJPEG-2.5.0-GCCcore-12.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,8 @@ easyconfigs:
- libspatialindex-1.9.3-GCCcore-13.2.0.eb:
options:
from-pr: 19922
- LittleCMS-2.15-GCCcore-13.2.0.eb
- giflib-5.2.1-GCCcore-13.2.0.eb
- OpenJPEG-2.5.0-GCCcore-13.2.0.eb
- libwebp-1.3.2-GCCcore-13.2.0.eb

9 changes: 7 additions & 2 deletions install_apptainer_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ set -e
# see https://github.com/apptainer/singularity/issues/5390#issuecomment-899111181
sudo apt-get install alien
alien --version
apptainer_rpm=$(curl --silent -L https://dl.fedoraproject.org/pub/epel/8/Everything/x86_64/Packages/a/ | grep 'apptainer-[0-9]' | sed 's/.*\(apptainer[0-9._a-z-]*.rpm\).*/\1/g')
curl -OL https://dl.fedoraproject.org/pub/epel/8/Everything/x86_64/Packages/a/${apptainer_rpm}
# stick to Apptainer < 1.3.0 by downloading from EPEL 8.8 archive,
# since CI workflow for testing scripts hangs/fails when using Apptainer 1.3.0
# cfr. https://github.com/EESSI/software-layer/pull/514
epel_subdir="pub/epel/8"
epel_subdir="pub/archive/epel/8.8"
apptainer_rpm=$(curl --silent -L https://dl.fedoraproject.org/${epel_subdir}/Everything/x86_64/Packages/a/ | grep 'apptainer-[0-9]' | sed 's/.*\(apptainer[0-9._a-z-]*.rpm\).*/\1/g')
curl -OL https://dl.fedoraproject.org/${epel_subdir}/Everything/x86_64/Packages/a/${apptainer_rpm}
sudo alien -d ${apptainer_rpm}
sudo apt install ./apptainer*.deb
apptainer --version
Expand Down

0 comments on commit bde75ee

Please sign in to comment.