4399e87459b9de6b0814c7fc1498d1f3626a780c
[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 /root/bin/lbuild-nightly.sh -f f33 -b @DATE@--f33-serversideonly &
24 [ -n "$SINGLE" ] && exit
25 /root/bin/lbuild-nightly.sh -f f31 -b @DATE@--f31-serversideonly &
26 /root/bin/lbuild-nightly.sh -f f29 -b @DATE@--f29-serversideonly &
27
28 # forget about sfa/python3 for now
29 exit
30 /root/bin/lbuild-nightly.sh -f f33 -b @DATE@--f33-sfapy3 sfa-GITPATH=git://git.onelab.eu/sfa.git@python3 &
31
32 # this once just to check
33 #/root/bin/lbuild-nightly.sh -f f29 -b @DATE@--py2-f29 -t lxcpy2-tags.mk &
34 #/root/bin/lbuild-nightly.sh -f f27 -b @DATE@--py2-f27 -t lxcpy2-tags.mk &
35
36 ### sfa from stable
37 # fedora=f25; branch=noslicemgr; name=${branch}
38 #/root/bin/lbuild-nightly.sh -f $fedora -b @DATE@--${fedora}-${name}  sfa-GITPATH=git://git.onelab.eu/sfa.git@${branch} &
39 #/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 &
40
41
42 exit # END - for my-builds
43
44 ########## oldies