Skip to content

Commit

Permalink
Update the setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Sep 29, 2024
1 parent 2506cf0 commit 922c671
Showing 1 changed file with 37 additions and 26 deletions.
63 changes: 37 additions & 26 deletions scripts/cvmfs/setup-nightlies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# This script sets up the Key4hep software stack from CVMFS for the nightlies

function usage() {
echo "Usage: source /cvmfs/sw-nightlies.hsf.org/key4hep/setup.sh [-r <release>] [-d] [--list-releases [distribution]] [--list-packages [distribution]]"
echo " -d : setup the debug version of the software stack"
echo "Usage: source /cvmfs/sw-nightlies.hsf.org/key4hep/setup.sh [-c <compiler>] [-r <release>] [-d] [--list-releases [distribution]] [--list-packages [distribution]]"
echo " -c : select compiler, system or gcc14 (default) on AlmaLinux 9, system for the other OSes"
echo " -d : setup the debug version of the software stack"
echo " -r <release> : setup a specific release, if not specified the latest release will be used (also used for --list-packages)"
echo " --help, -h : print this help message"
echo " --list-releases [distribution] : list available releases for the specified distribution (almalinux, centos, ubuntu). By default (no OS is specified) it will list the releases for the detected distribution"
Expand All @@ -25,32 +25,40 @@ if [[ "$1" = "-r" && -n "$2" && (! -d "/cvmfs/sw-nightlies.hsf.org/key4hep/relea
}

function list_releases() {
if [ ! -n "$1" ]; then
if [ -z "$1" ]; then
os=$os
else
os=$1
fi
if [ "$os" = "almalinux" ] || [ "$os" = "almalinux9" ]; then
name="almalinux9"
if [ -z "$compiler" ]; then
compiler="gcc14"
fi
elif [ "$os" = "ubuntu" ] || [ "$os" = "ubuntu22" ]; then
name="ubuntu22"
else
echo "Unsupported OS, aborting..."
usage
return 1
fi
find /cvmfs/sw-nightlies.hsf.org/key4hep/releases/ -maxdepth 2 -type d -name "*$name*$build_type*" |
echo "Compiler is $compiler"
find /cvmfs/sw-nightlies.hsf.org/key4hep/releases/ -maxdepth 2 -type d -name "*$name*$compiler*$build_type*" |
\awk -F/ '{print $(NF-1)}' | sort
unset compiler
}

function list_packages() {
if [ ! -n "$1" ]; then
if [ -z "$1" ]; then
os=$os
else
os=$1
fi
if [ "$os" = "almalinux" ] || [ "$os" = "almalinux9" ]; then
name="almalinux9"
if [ -z "$compiler" ]; then
compiler="gcc14"
fi
elif [ "$os" = "ubuntu" ] || [ "$os" = "ubuntu22" ]; then
name="ubuntu22"
else
Expand All @@ -62,7 +70,7 @@ function list_packages() {
previous_scratch_releases=()
while IFS= read -r line; do
previous_scratch_releases+=("$line")
done < <(find /cvmfs/sw-nightlies.hsf.org/key4hep/releases/ -maxdepth 3 -mindepth 3 -type f -name ".scratch" | grep "$name" | grep opt | sort | xargs -n1 dirname)
done < <(find /cvmfs/sw-nightlies.hsf.org/key4hep/releases/ -maxdepth 3 -mindepth 3 -type f -name ".scratch" | grep "$name" | grep "$compiler" | grep opt | sort | xargs -n1 dirname)
for release in "${previous_scratch_releases[@]}"; do
# Get the latest previous or equal date
if [[ "$(basename $(dirname $release))" = "$rel" ]] || [[ "$(basename $(dirname $release))" < "$rel" ]]; then
Expand All @@ -76,31 +84,34 @@ function list_packages() {
if [ $build_type = "dbg" ] && [ -d $(echo $latest_previous_release | sed 's/opt/dbg/') ]; then
folders+=($(echo $latest_previous_release | sed 's/opt/dbg/'))
fi
folders+=(/cvmfs/sw-nightlies.hsf.org/key4hep/releases/$rel/*$name*-*$build_type*)
folders+=(/cvmfs/sw-nightlies.hsf.org/key4hep/releases/$rel/*$name*$compiler*-*$build_type*)

declare -a package_versions
package_versions=()
declare -A package_versions

for folder in "${folders[@]}"; do
for package in $(ls $folder); do
package_name=$(basename "$package")
version_string=$(ls $folder/$package_name -t | head -n 1)
package_version=$(echo "$version_string" | awk '{if ($NF ~ /develop/) {split($NF,arr,"_"); printf "%s", arr[1]} else {split($(NF),arr,"-"); printf "%s", arr[1]; for (i=2; i<length(arr); i++) printf "-%s", arr[i] } printf "\n" }')

# Update the version of the package in the associative array
if [[ " ${package_versions[@]} " =~ "${package_name}" ]]; then
package_versions=("${package_versions[@]/$package_name=*/$package_name=$package_version}")
else
package_versions+=("$package_name=$package_version")
fi
package_versions["$package_name"]="$package_version"
done
done

# Print the final version of each package
for pair in "${package_versions[@]}"; do
echo ${pair%%=*} ${pair#*=}
done
# Print the final version for each package
if [ -z "$ZSH_VERSION" ]; then
# Bash
for package_name in $(printf "%s\n" "${!package_versions[@]}" | sort); do
package_version="${package_versions[$package_name]}"
echo "$package_name $package_version"
done
else
# Zsh
for key in ${(ok)package_versions}; do
echo "$key $package_versions[$key]" | tr -d '"'
done
fi

unset compiler
}


Expand Down Expand Up @@ -211,15 +222,15 @@ for ((i=1; i<=$#; i++)); do
;;
-c)
if [ "$os" = "almalinux9" ]; then
if [ ! -n "$argn" ]; then
if [ -z "$argn" ]; then
compiler="gcc14"
echo "No compiler specified, using the default gcc 14.2.1 compiler"
elif [ "$argn" = "system" ]; then
compiler="gcc11"
echo "Using the system compiler"
elif [ "$argn" = "gcc11" ]; then
compiler="gcc11"
echo "Using the gcc 11.4 compiler"
echo "Using the GCC 11.4 compiler"
else
echo "Unsupported compiler $argn, aborting..."
usage
Expand All @@ -232,7 +243,7 @@ for ((i=1; i<=$#; i++)); do
fi
;;
--list-releases)
if [ ! -n "$argn" ]; then
if [ -z "$argn" ]; then
list_releases $os
return 0
elif [ -n "$argn" ] && [[ "$argn" =~ ^(almalinux|ubuntu) ]]; then
Expand All @@ -245,7 +256,7 @@ for ((i=1; i<=$#; i++)); do
fi
;;
--list-packages)
if [ ! -n "$argn" ]; then
if [ -z "$argn" ]; then
list_packages $os
return 0
elif [ -n "$argn" ] && [[ "$argn" =~ ^(almalinux|ubuntu) ]]; then
Expand All @@ -263,7 +274,7 @@ for ((i=1; i<=$#; i++)); do
;;
*)
eval "prev=\${$((i-1))}"
if [ "$prev" != "-r" ]; then
if [ "$prev" != "-r" ] && [ "$prev" != "-c" ]; then
echo "Unknown argument $arg, it will be ignored"
# usage
# return 1
Expand All @@ -272,7 +283,7 @@ for ((i=1; i<=$#; i++)); do
esac
done

if [ ! -n "$compiler" ]; then
if [ -z "$compiler" ]; then
if [ "$os" = "almalinux9" ]; then
compiler="gcc14"
echo "No compiler specified, using the default gcc 14.2.1 compiler"
Expand Down

0 comments on commit 922c671

Please sign in to comment.