turn off py2 builds, that worked all right with all the tags
[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
21 /root/bin/lbuild-nightly.sh -f f29 -b @DATE@--f29 &
22 [ -n "$SINGLE" ] && exit
23 /root/bin/lbuild-nightly.sh -f f27 -b @DATE@--f27 &
24 # this once just to check
25 #/root/bin/lbuild-nightly.sh -f f29 -b @DATE@--py2-f29 -t lxcpy2-tags.mk &
26 #/root/bin/lbuild-nightly.sh -f f27 -b @DATE@--py2-f27 -t lxcpy2-tags.mk &
27
28 ### sfa from stable
29 # fedora=f25; branch=noslicemgr; name=${branch}
30 #/root/bin/lbuild-nightly.sh -f $fedora -b @DATE@--${fedora}-${name}  sfa-GITPATH=git://git.onelab.eu/sfa.git@${branch} &
31 #/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 &
32
33
34 exit # END - for my-builds
35
36 ########## oldies