more sensible name lxcpy3-tags.mk
[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
20 /root/bin/lbuild-nightly.sh -f f29 -b @DATE@--f29 &
21 [ -n "$SINGLE" ] && exit
22 /root/bin/lbuild-nightly.sh -f f27 -b @DATE@--f27 &
23 /root/bin/lbuild-nightly.sh -t lxcpy3-tags.mk -f f27 -b @DATE@--f27-py3 &
24
25 ### sfa from stable
26 # fedora=f25; branch=noslicemgr; name=${branch}
27 #/root/bin/lbuild-nightly.sh -f $fedora -b @DATE@--${fedora}-${name}  sfa-GITPATH=git://git.onelab.eu/sfa.git@${branch} &
28 #/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 &
29
30
31 exit # END - for my-builds
32
33 ########## oldies