-
Notifications
You must be signed in to change notification settings - Fork 203
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 #4342 from easybuilders/4.8.x
release EasyBuild v4.8.1
- Loading branch information
Showing
32 changed files
with
779 additions
and
140 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,61 @@ | ||
name: End-to-end test of EasyBuild in different distros | ||
on: [push, pull_request] | ||
jobs: | ||
build_publish: | ||
name: End-to-end test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
container: | ||
- centos-7.9 | ||
- centos-8.5 | ||
- fedora-36 | ||
- opensuse-15.4 | ||
- rockylinux-8.8 | ||
- rockylinux-9.2 | ||
- ubuntu-20.04 | ||
- ubuntu-22.04 | ||
fail-fast: false | ||
container: | ||
image: ghcr.io/easybuilders/${{ matrix.container }}-amd64 | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: download and unpack easyblocks and easyconfigs repositories | ||
run: | | ||
cd $HOME | ||
for pkg in easyblocks easyconfigs; do | ||
curl -OL https://github.com/easybuilders/easybuild-${pkg}/archive/develop.tar.gz | ||
tar xfz develop.tar.gz | ||
rm -f develop.tar.gz | ||
done | ||
- name: Set up environment | ||
shell: bash | ||
run: | | ||
# collect environment variables to be set in subsequent steps in script that can be sourced | ||
echo "export PATH=$PWD:$PATH" > /tmp/eb_env | ||
echo "export PYTHONPATH=$PWD:$HOME/easybuild-easyblocks-develop:$HOME/easybuild-easyconfigs-develop" >> /tmp/eb_env | ||
- name: Run commands to check test environment | ||
shell: bash | ||
run: | | ||
cmds=( | ||
"whoami" | ||
"pwd" | ||
"env | sort" | ||
"eb --version" | ||
"eb --show-system-info" | ||
"eb --check-eb-deps" | ||
"eb --show-config" | ||
) | ||
for cmd in "${cmds[@]}"; do | ||
echo ">>> $cmd" | ||
sudo -u easybuild bash -l -c "source /tmp/eb_env; $cmd" | ||
done | ||
- name: End-to-end test of installing bzip2 with EasyBuild | ||
shell: bash | ||
run: | | ||
sudo -u easybuild bash -l -c "source /tmp/eb_env; eb bzip2-1.0.8.eb --trace --robot" |
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
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
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,44 @@ | ||
## | ||
# Copyright 2012-2023 Ghent University | ||
# | ||
# This file is part of EasyBuild, | ||
# originally created by the HPC team of Ghent University (http://ugent.be/hpc/en), | ||
# with support of Ghent University (http://ugent.be/hpc), | ||
# the Flemish Supercomputer Centre (VSC) (https://www.vscentrum.be), | ||
# Flemish Research Foundation (FWO) (http://www.fwo.be/en) | ||
# and the Department of Economy, Science and Innovation (EWI) (http://www.ewi-vlaanderen.be/en). | ||
# | ||
# https://github.com/easybuilders/easybuild | ||
# | ||
# EasyBuild is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation v2. | ||
# | ||
# EasyBuild is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with EasyBuild. If not, see <http://www.gnu.org/licenses/>. | ||
## | ||
""" | ||
EasyBuild support for ifbf toolchain (includes Intel compilers, FlexiBLAS, and FFTW). | ||
Authors: | ||
* Sebastian Achilles (Juelich Supercomputing Centre) | ||
""" | ||
|
||
from easybuild.toolchains.intel_compilers import IntelCompilersToolchain | ||
from easybuild.toolchains.fft.fftw import Fftw | ||
from easybuild.toolchains.linalg.flexiblas import FlexiBLAS | ||
|
||
|
||
class Ifbf(IntelCompilersToolchain, FlexiBLAS, Fftw): | ||
""" | ||
Compiler toolchain with Intel compilers, FlexiBLAS, and FFTW | ||
""" | ||
NAME = 'ifbf' | ||
SUBTOOLCHAIN = IntelCompilersToolchain.NAME | ||
OPTIONAL = True |
Oops, something went wrong.