f37 -> f39
[infrastructure.git] / scripts / builds.sh
1 #!/bin/bash
2
3 # if run with -s (single) we only run one build per box
4 [ "$1" == "-s" ] && { shift; SINGLE=true; }
5
6 # the tests flavours available
7 # -B means no test
8 # -e step : mark a step as exclude (do not run it at all)
9 # -i step : mark a step as ignore (run it, but keep going if it fails)
10 # -c default for the tests setup is one myplc
11 # -c dual has two myplc's - pointing to each other AMs
12 # -c triangle has three - ditto
13 # -c sfamesh makes them point to SMs
14 # -c bignode is to allow one hour for the node to install
15 # -c config -c sfadebug - turn on sfa debug
16 # -y pg testing only the pg rspecs
17
18 # May 2018: check-initscripts is no longer part of the standard test suite
19 # Dec 2018: check-tcp is no longer part of the standard test suite
20 # Mar 2019: sfa is python3
21 # Apr 2019: retrofit - default is sfa-4.0.3 i.e. python2, too much fuss otherwise
22
23 # avoid using sfa in the build name, the tests then believe there is sfa available
24 /root/bin/lbuild-nightly.sh -f f39 -b @DATE@--f39-nofed &
25 [ -n "$SINGLE" ] && exit
26
27 #/root/bin/lbuild-nightly.sh -f f33 -b @DATE@--f33-serverside &
28 #/root/bin/lbuild-nightly.sh -f f31 -b @DATE@--f31-serverside &
29 #/root/bin/lbuild-nightly.sh -f f29 -b @DATE@--f29-serverside &
30
31 # forget about sfa/python3 for now
32 #/root/bin/lbuild-nightly.sh -f f33 -b @DATE@--f33-sfapy3 sfa-GITPATH=git://git.onelab.eu/sfa.git@python3 &
33
34 # this once just to check
35 #/root/bin/lbuild-nightly.sh -f f29 -b @DATE@--py2-f29 -t lxcpy2-tags.mk &
36 #/root/bin/lbuild-nightly.sh -f f27 -b @DATE@--py2-f27 -t lxcpy2-tags.mk &
37
38 ### sfa from stable
39 # fedora=f25; branch=noslicemgr; name=${branch}
40 #/root/bin/lbuild-nightly.sh -f $fedora -b @DATE@--${fedora}-${name}  sfa-GITPATH=git://git.onelab.eu/sfa.git@${branch} &
41 #/root/bin/lbuild-nightly.sh -f f27 sfa-GITPATH=git://git.onelab.eu/sfa.git@master tests-GITPATH=git://git.onelab.eu/tests.git@master -b @DATE@--f27-sfa &
42
43
44 exit # END - for my-builds
45
46 ########## oldies