Skip to content

Commit 93c86b4

Browse files
authored
Merge pull request #220 from trz42/sync_nessi_eessi_remove_pilot
lots of changes to remove 'pilot'
2 parents a4a4f3a + 0b8a456 commit 93c86b4

12 files changed

+51
-351
lines changed
File renamed without changes.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
# Software layer
22

3-
The software layer of the EESSI project uses [EasyBuild](https://docs.easybuild.io), [Lmod](https://lmod.readthedocs.io) and [archspec](https://archspec.readthedocs.io).
3+
The software layer of the NESSI project uses [EasyBuild](https://docs.easybuild.io), [Lmod](https://lmod.readthedocs.io) and [archspec](https://archspec.readthedocs.io).
44

55
See also https://www.eessi.io/docs/software_layer .
66

7-
## Pilot software stack
7+
## Accessing the software stack
88

99
You can set up your environment by sourcing the init script:
1010

1111
```
1212
$ source /cvmfs/pilot.nessi.no/versions/2023.06/init/bash
13-
Found EESSI pilot repo @ /cvmfs/pilot.nessi.no/versions/2023.06!
13+
Found NESSI repo @ /cvmfs/pilot.nessi.no/versions/2023.06!
1414
Derived subdirectory for software layer: x86_64/intel/broadwell
1515
Using x86_64/intel/haswell subdirectory for software layer
1616
Initializing Lmod...
1717
Prepending /cvmfs/pilot.nessi.no/versions/2023.06/software/x86_64/intel/broadwell/modules/all to $MODULEPATH...
18-
Environment set up to use EESSI pilot software stack, have fun!
19-
[EESSI pilot 2023.06] $
18+
Environment set up to use NESSI software stack, have fun!
19+
{NESSI 2023.06} $
2020
```
2121

22-
### Accessing EESSI via a container
22+
### Accessing NESSI via a container
2323

2424
You need Singularity version 3.7 or newer. Then, simply run
2525

@@ -40,6 +40,6 @@ Note, not all features/arguments listed via `./eessi_container.sh --help` are im
4040
The software in this repository is distributed under the terms of the
4141
[GNU General Public License v2.0](https://opensource.org/licenses/GPL-2.0).
4242

43-
See [LICENSE](https://github.com/EESSI/software-layer/blob/main/LICENSE) for more information.
43+
See [LICENSE](https://github.com/NorESSI/software-layer/blob/main/LICENSE) for more information.
4444

4545
SPDX-License-Identifier: GPL-2.0-only

bot/bot-eessi-aws-citc.cfg

Lines changed: 0 additions & 231 deletions
This file was deleted.

bot/build.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ EESSI_REPOS_CFG_DIR_OVERRIDE=$(cfg_get_value "repository" "repos_cfg_dir")
101101
export EESSI_REPOS_CFG_DIR_OVERRIDE=${EESSI_REPOS_CFG_DIR_OVERRIDE:-${PWD}/cfg}
102102
echo "bot/build.sh: EESSI_REPOS_CFG_DIR_OVERRIDE='${EESSI_REPOS_CFG_DIR_OVERRIDE}'"
103103

104-
# determine pilot version to be used from .repository.repo_version in ${JOB_CFG_FILE}
105-
# here, just set & export EESSI_PILOT_VERSION_OVERRIDE
104+
# determine NESSI version to be used from .repository.repo_version in ${JOB_CFG_FILE}
105+
# here, just set & export EESSI_VERSION_OVERRIDE
106106
# next script (eessi_container.sh) makes use of it via sourcing init scripts
107107
# (e.g., init/eessi_defaults or init/minimal_eessi_env)
108-
export EESSI_PILOT_VERSION_OVERRIDE=$(cfg_get_value "repository" "repo_version")
109-
echo "bot/build.sh: EESSI_PILOT_VERSION_OVERRIDE='${EESSI_PILOT_VERSION_OVERRIDE}'"
108+
export EESSI_VERSION_OVERRIDE=$(cfg_get_value "repository" "repo_version")
109+
echo "bot/build.sh: EESSI_VERSION_OVERRIDE='${EESSI_VERSION_OVERRIDE}'"
110110

111111
# determine CVMFS repo to be used from .repository.repo_name in ${JOB_CFG_FILE}
112112
# here, just set EESSI_CVMFS_REPO_OVERRIDE, a bit further down
@@ -181,9 +181,9 @@ BUILD_TMPDIR=$(grep ' as tmp directory ' ${build_outerr} | cut -d ' ' -f 2)
181181
TARBALL_STEP_ARGS+=("--resume" "${BUILD_TMPDIR}")
182182

183183
timestamp=$(date +%s)
184-
# to set EESSI_PILOT_VERSION we need to source init/eessi_defaults now
184+
# to set EESSI_VERSION we need to source init/eessi_defaults now
185185
source init/eessi_defaults
186-
export TGZ=$(printf "eessi-%s-software-%s-%s-%d.tar.gz" ${EESSI_PILOT_VERSION} ${EESSI_OS_TYPE} ${EESSI_SOFTWARE_SUBDIR_OVERRIDE//\//-} ${timestamp})
186+
export TGZ=$(printf "eessi-%s-software-%s-%s-%d.tar.gz" ${EESSI_VERSION} ${EESSI_OS_TYPE} ${EESSI_SOFTWARE_SUBDIR_OVERRIDE//\//-} ${timestamp})
187187

188188
# value of first parameter to create_tarball.sh - TMP_IN_CONTAINER - needs to be
189189
# synchronised with setting of TMP_IN_CONTAINER in eessi_container.sh
@@ -192,8 +192,8 @@ export TGZ=$(printf "eessi-%s-software-%s-%s-%d.tar.gz" ${EESSI_PILOT_VERSION} $
192192
TMP_IN_CONTAINER=/tmp
193193
echo "Executing command to create tarball:"
194194
echo "./eessi_container.sh ${COMMON_ARGS[@]} ${TARBALL_STEP_ARGS[@]}"
195-
echo " -- ./create_tarball.sh ${TMP_IN_CONTAINER} ${EESSI_PILOT_VERSION} ${EESSI_SOFTWARE_SUBDIR_OVERRIDE} /eessi_bot_job/${TGZ} 2>&1 | tee -a ${tar_outerr}"
195+
echo " -- ./create_tarball.sh ${TMP_IN_CONTAINER} ${EESSI_VERSION} ${EESSI_SOFTWARE_SUBDIR_OVERRIDE} /eessi_bot_job/${TGZ} 2>&1 | tee -a ${tar_outerr}"
196196
./eessi_container.sh "${COMMON_ARGS[@]}" "${TARBALL_STEP_ARGS[@]}" \
197-
-- ./create_tarball.sh ${TMP_IN_CONTAINER} ${EESSI_PILOT_VERSION} ${EESSI_SOFTWARE_SUBDIR_OVERRIDE} /eessi_bot_job/${TGZ} 2>&1 | tee -a ${tar_outerr}
197+
-- ./create_tarball.sh ${TMP_IN_CONTAINER} ${EESSI_VERSION} ${EESSI_SOFTWARE_SUBDIR_OVERRIDE} /eessi_bot_job/${TGZ} 2>&1 | tee -a ${tar_outerr}
198198

199199
exit 0

build_container.sh

Lines changed: 0 additions & 69 deletions
This file was deleted.

check_missing_installations.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
#
3-
# Script to check for missing installations in EESSI pilot software stack (version 2023.06)
3+
# Script to check for missing installations in NESSI software stack (version 2023.06)
44
#
55
# author: Kenneth Hoste (@boegel)
66
# author: Thomas Roeblitz (@trz42)

0 commit comments

Comments
 (0)