-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathbuild-all.sh
executable file
·60 lines (52 loc) · 1.49 KB
/
build-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/bash
# This file is part of Slurm-Mail.
#
# Slurm-Mail is a drop in replacement for Slurm's e-mails to give users
# much more information about their jobs compared to the standard Slurm
# e-mails.
#
# Copyright (C) 2018-2024 Neil Munday (neil@mundayweb.com)
#
# Slurm-Mail 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, either version 3 of the License, or (at
# your option) any later version.
#
# Slurm-Mail 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 Slurm-Mail. If not, see <http://www.gnu.org/licenses/>.
#
#
# A helper script to build all docker images for a particular
# version of SLURM.
#
if [ -z $1 ]; then
echo "Please provide a SLURM version"
exit 1
fi
SLURM_VER=$1
OSES="
amzn2
amzn2023
el7
el8
el9
sl15
ub20
ub22
ub24"
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
for OS in $OSES; do
echo "Building: $OS"
dockerfile="Dockerfile.$OS"
if [ ! -f $dockerfile ]; then
echo "$dockerfile does not exist"
exit 1
fi
docker build --build-arg SLURM_VER=${SLURM_VER} -f ${dockerfile} -t ghcr.io/neilmunday/slurm-mail/slurm-${OS}:${SLURM_VER} .
done