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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
|
#!/usr/bin/env python
# @HEADER
# ************************************************************************
#
# TriBITS: Tribal Build, Integrate, and Test System
# Copyright 2013 Sandia Corporation
#
# Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
# the U.S. Government retains certain rights in this software.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the Corporation nor the names of the
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# ************************************************************************
# @HEADER
#
# Imports
#
import os
import sys
import traceback
from optparse import OptionParser
if os.environ.get("TRIBITS_CHECKIN_TEST_DEBUG_DUMP", "") == "ON":
debugDump = True
else:
debugDump = False
if debugDump:
print "NOTE: TRIBITS_CHECKIN_TEST_DEBUG_DUMP=ON set in env, doing debug dump ..."
thisFilePath = __file__
if debugDump: print "\nthisFilePath =", thisFilePath
thisFileRealAbsBasePath = os.path.dirname(os.path.abspath(os.path.realpath(thisFilePath)))
if debugDump: print "\nthisFileRealAbsBasePath = '"+thisFileRealAbsBasePath+"'"
from CheckinTest import *
from GeneralScriptSupport import *
from gitdist import addOptionParserChoiceOption
#
# Utility classes and functions.
#
usageHelp = r"""checkin-test.py [OPTIONS]
This tool does testing of a TriBITS-based project using CTest and this script
can actually do the push itself using git in a safe way. In fact, it is
recommended that one uses this script to push since it will amend the last
commit message with a (minimal) summary of the builds and tests run with
results and/or send out a summary email about the builds/tests performed.
QUICKSTART
-----------
In order to do a safe push, perform the following recommended workflow
(different variations on this workflow are described in the COMMON USE CASES
section below):
1) Commit changes in the local repo:
# 1.a) See what files are changed, newly added, etc.
$ git status
# 1.b) Stage the files you want to commit
$ git stage <files you want to commit>
# 1.c) Create your local commits
$ git commit -- SOMETHING
$ git commit -- SOMETHING_ELSE
...
# 1.d) Stash whatever changes are left you don't want to test/push
$ git stash
NOTE: You can group your commits any way that you would like (see the basic
git documentation).
NOTE: When multiple repos are involved, use the 'gitdist' command instead of
'git'. This script is provided at tribits/python_utils/gitdist. See
gitdist --help for details.
2) Review the changes that you have made to make sure it is safe to push:
$ cd $PROJECT_HOME
$ git local-stat | less # Look at the full status of local repo
$ git diff --name-status HEAD ^@{u} # [Optional] Look at the files that have changed
NOTE: The command 'local-stat' is a git alias that can be installed with the
script tribits/python_utils/git-config-alias.sh. This command is
recommended over just a raw 'git status' or 'git log' to review commits
before attempting to test/push commits. If you have not installed these
alias, then run the following commands instead:
$ git status
$ git log --oneline --name-status HEAD ^@{u}
NOTE: If you see any files/directories that are listed as 'unknown' returned
from 'git local-stat', then you will need to do an 'git add' to track them or
add them to an ignore list *before* you run the checkin-test.py script.
The git script will not allow you to push if there are new 'unknown' files or
uncommitted changes to tracked files.
NOTE: When multiple repos are involved, use 'gitdist-mod-status' to see the
state of your repos before pushing. See gitdist --help for details.
3) Set up the checkin base build directory (first time only):
$ cd $PROJECT_HOME
$ echo CHECKIN >> .git/info/exclude
$ mkdir CHECKIN
$ cd CHECKIN
NOTE: You may need to set up some configuration files if CMake cannot find
the right compilers, MPI, and TPLs by default (see detailed documentation
below).
NOTE: You might want to set up a simple shell driver script for your common
use cases.
NOTE: You can set up a CHECKIN directory of any name in any location
you want. If you create one outside of the main source dir, then
you will not have to add the git exclude shown above.
4) Do the pull, configure, build, test, and push:
$ cd $PROJECT_HOME
$ cd CHECKIN
$ ../checkin-test.py -j4 --do-all --push
NOTE: The above will: a) pull updates from the tracking branch, b)
automatically enable the correct packages based on changed files, c)
configure and build the changed and downstream packages, d) run the tests,
e) send you emails about what happened, f) do a final pull from the global
repo, g) optionally amend the last local commit with the test results, and
h) finally push local commits to the tracking branch if everything passes.
NOTE: The repo must be on a branch (not a detached head state) with a
tracking branch '<remoterepo>/<remotebranch>' so that a raw 'git pull' can
be performed to get updates and to push changes. Also, the push is done
explicitly to the tracking branch using:
git push <remoterepo> <remotebranch>
NOTE: You must not have any uncommitted changes or the script will stop
right away. To run the script, you will may need to first use 'git stash'
to stash away your unstagged/uncommitted changes *before* running this
script.
NOTE: You need to have SSH public/private keys set up to the remote repo
machines for the git commands invoked in the script to work without you
having to type a password. If the 'git pull' fails, the detailed output is
generally in a pull*.out file (see the checkin-test.out log file for
details).
NOTE: You can do the final push in a second invocation of the script with a
follow-up run with --push and removing --do-all (it will remember the
results from the build/test cases just ran). For more details, see detailed
documentation below.
NOTE: Once you start running the checkin-test.py script, you can go off and
do something else and just check your email to see if all the builds and
tests passed and if the push happened or not.
NOTE: The commands 'cmake', 'ctest', and 'make' must be in your default path
before running this script.
NOTE: Defaults like -j4 can be set using a local-checkin-test-defaults.py
file (see below).
For more details on using this script, see the detailed documentation below.
DETAILED DOCUMENTATION
-----------------------
The following approximate steps are performed by this script:
----------------------------------------------------------------------------
1) Check to see if the local repo(s) are clean:
$ git status
NOTE: If any modified or any unknown files are shown, the process will be
aborted. The local repo(s) working directory must be clean and ready to
push *everything* that is not stashed away.
2) Do a 'git pull' to update the repo (done if --pull or --do-all is set):
NOTE: If not doing a pull, use --allow-no-pull or --local-do-all.
3) Select the list of packages to enable forward/downstream based on the
package directories where there are changed files (or from a list of packages
passed in by the user).
NOTE: The automatic enable behavior can be overridden or modified using the
options --enable-all-packages=on/off, --enable-packages=<p0>,<p1>,... ,
--disable-packages=<p0>,<p1>,... , and/or --no-enable-fwd-packages.
4) For each build/test case <BUILD_NAME> (e.g. MPI_DEBUG, SERIAL_RELEASE,
extra builds specified with --st-extra-builds and --extra-builds):
4.a) Configure a build directory <BUILD_NAME> in a standard way for all of
the packages that have changed and all of the packages that depend on these
packages forward/downstream. You can manually select which packages get
enabled (see the enable options above). (done if --configure, --do-all, or
--local-do-all is set.)
4.b) Build all configured code with 'make' (e.g. with -jN set through
-j or --make-options). (done if --build, --do-all, or --local-do-all is set.)
4.c) Run all BASIC tests for enabled packages. (done if --test, --do-all,
or --local-do-all is set.)
4.d) Analyze the results of the pull, configure, build, and tests and send
email about results. (emails only sent out if --send-emails-to!="")
5) Do final pull and rebase, append test results to last commit message, and
push (done if --push or --do-all is set)
5.a) Do a final 'git pull' (done if --pull or --do-all is set)
5.b) Do 'git rebase <remoterepo>/<remotebranch>' (done if --rebase is set)
5.c) Amend commit message of the most recent commit with the summary of the
testing performed. (done if --append-test-results is set.)
5.d) Push the local commits to the global repo (done if --push is set)
6) Send out final on actions (i.e. 'DID PUSH' email if a push occurred).
(done if --send-email-to!="" is set and --send-email-only-on-failure is *not*
set)
----------------------------------------------------------------------------
The recommended way to use this script is to create a new base CHECKIN test
directory apart from your standard build directories such as with:
$ $PROJECT_HOME
$ mkdir CHECKIN
$ echo CHECKIN >> .git/info/exclude
The most basic way to do pre-push testing is with:
$ cd CHECKIN
$ ../checkin-test.py --do-all [other options]
If your MPI installation, other compilers, and standard TPLs can be found
automatically, then this is all you will need to do. However, if the setup
cannot be determined automatically, then you can add a set of CMake variables
that will get read in the files:
COMMON.config
MPI_DEBUG.config
SERIAL_RELEASE.config
(or whatever your standard --default-builds are).
Actually, for built-in build/test cases, skeletons of these files will
automatically be written out with typical CMake cache variables (commented
out) that you would need to set out. Any CMake cache variables listed in
these files will be read into and passed on the configure line to 'cmake'.
WARNING: Please do not add any extra CMake cache variables than what are
needed to get the Primary Tested (PT) --default-builds builds to work. Adding
other enables/disables will make the builds non-standard and can break these
PT builds. The goal of these configuration files is to allow you to specify
the minimum environment to find MPI, your compilers, and the required TPLs
(e.g. BLAS, LAPACK, etc.). If you need to fudge what packages are enabled,
please use the script arguments --enable-packages, --enable-extra-pacakges,
--disable-packages, --no-enable-fwd-packages, and/or --enable-all-packages to
control this, not the *.config files!
WARNING: Please do not add any CMake cache variables in the *.config files
that will alter what packages or TPLs are enabled or what tests are run.
Actually, the script will not allow you to change TPL enables in these
standard *.config files because to do so deviates from a consistent build
configuration for Primary Tested (PT) Code.
NOTE: All tentatively-enabled TPLs (e.g. Pthreads and BinUtils) are hard
disabled in order to avoid different behaviors between machines where they
would be enabled and machines where they would be disabled.
NOTE: If you want to add extra build/test cases that do not conform to
the standard build/test configurations described above, then you need
to create extra builds with the --extra-builds and/or
--st-extra-builds options (see below).
NOTE: Before running this script, you should first do an 'git status' and 'git
diff --name-status HEAD ^@{u}' and examine what files are changed to make sure
you want to push what you have in your local working directory. Also, please
look out for unknown files that you may need to add to the git repository with
'git add' or add to your ignores list. There cannot be any uncommitted
changes in the local repo before running this script.
NOTE: You don't need to run this script if you have not changed any files that
affect the build or the tests. For example, if all you have changed are
documentation files, then you don't need to run this script before pushing
manually.
NOTE: To see detailed debug-level information, set
TRIBITS_CHECKIN_TEST_DEBUG_DUMP=ON in the env before running this script.
COMMON USE CASES (EXAMPLES):
----------------------------
(*) Basic full testing with integrating with global repo(s) without push:
../checkin-test.py --do-all
NOTE: This will result in a set of emails getting sent to your email address
for the different configurations and an overall push readiness status email.
NOTE: If everything passed, you can follow this up with a --push (see
below).
(*) Basic full testing with integrating with local repo and push:
../checkin-test.py --do-all --push
NOTE: By default this will rebase your local commits and amend the last
commit with a short summary of test results. This is appropriate for
pushing commits that only exist in your local repo and are not shared with
any remote repo.
(*) Push to global repo after a completed set of tests have finished:
../checkin-test.py [other options] --push
NOTE: This will pick up the results for the last completed test runs with
[other options] and append the results of those tests to the log of the most
recent commit.
NOTE: Take the action options for the prior run and replace --do-all with
--push but keep all of the rest of the options the same. For example, if
you did:
../checkin-test.py --enable-packages=Blah --default-builds=MPI_DEBUG --do-all
then follow that up with:
../checkin-test.py --enable-packages=Blah --default-builds=MPI_DEBUG --push
NOTE: This is a common use case when some tests are failing which aborted
the initial push but you determine it is okay to push anyway and do so with
--force-push.
(*) Test only the packages modified and not the forward dependent packages:
../checkin-test.py --do-all --no-enable-fwd-packages
NOTE: This is a safe thing to do when only tests in the modified packages
are changed and not library code. This can speed up the testing process and
is to be preferred over not running this script at all. It would be very
hard to make this script automatically determine if only test code has
changed because every package does not follow a set pattern for
tests and test code.
(*) Run the most important default (e.g. MPI_DEBUG) build/test only:
../checkin-test.py --do-all --default-builds=MPI_DEBUG
(*) The minimum acceptable testing when code has been changed:
../checkin-test.py \
--do-all --enable-all-packages=off --no-enable-fwd-packages \
--default-builds=MPI_DEBUG
NOTE: This will do only an MPI DEBUG build and will only build and run the
tests for the packages that have directly been changed and not any forward
packages. Replace "MPI_DEBUG" with whatever your most important default
build is.
(*) Test only a specific set of packages and no others:
../checkin-test.py \
--enable-packages=<P0>,<P1>,<P2> --no-enable-fwd-packages \
--do-all
NOTE: This will override all logic in the script about which packages will
be enabled based on file changes and only the given packages will be
enabled. When there are tens of thousands of changed files and hundreds of
defined packages, this auto-detection algorithm can be very expensive!
NOTE: You might also want to pass in --enable-all-packages=off in case the
script wants to enable all the packages (see the output in the
checkin-test.py log file for details) and you think it is not necessary to
do so.
NOTE: Using these options is greatly preferred to not running this script at
all and should not be any more expensive than the testing you would already
do manually before a push.
(*) Test changes locally without pulling updates:
../checkin-test.py --local-do-all
NOTE: This will just configure, build, test, and send an email notification
without updating or changing the status of the local git repo in any way and
without any communication with the global repo. Hence, you can have
uncommitted changes and still run configure, build, test without having to
commit or having to stash changes.
NOTE: This will determine what packages to enable and test based on changes
w.r.t. to the tracking branch. If not on a tracking branch, or in a
detached head state, see below.
NOTE: This is typically not a sufficient level of testing in order to push
the changes to a shared branch because you have not fully integrated your
changes yet with other developers. However, this would be a sufficient
level of testing in order to do a commit on the local machine and then pull
to a remote machine for further testing and a push (see below).
(*) Local test of repo version on a detached head or with no tracking branch:
../checkin-test.py --enable-all-packages=[on|off] \
--enable-packages=<P0>,... --local-do-all
By specifying what packages are enabled and not doing a pull or push, the
script allows the repo(s) to be in a detached head state or on a branch that
does not have a tracking branch. This allows the checkin-test.py script to
be used, for example, to test versions using 'git bisect'.
(*) Adding extra build/test cases:
Often you will be working on Secondary Tested (ST) Code or Experimental (EX)
Code and want to include the testing of this in your pre-push testing
process along with the standard --default-builds build/test cases which can
only include Primary Tested (PT) Code. In this case you can run with:
../checkin-test.py --extra-builds=<BUILD1>,<BUILD2>,... [other options]
For example, if you have a build that enables the TPL CUDA you would do:
echo "
-DTPL_ENABLE_MPI:BOOL=ON
-DTPL_ENABLE_CUDA:BOOL=ON
" > MPI_DEBUG_CUDA.config
and then run with:
../checkin-test.py --extra-builds=MPI_DEBUG_CUDA --do-all
This will do the standard --default-builds (e.g. MPI_DEBUG and
SERIAL_RELEASE) build/test cases along with your non-standard MPI_DEBUG_CUDA
build/test case.
NOTE: You can disable the default build/test cases with --default-builds="".
However, please only do this when you are not going to push because you need
at least one default build/test case (the most important default PT case,
e.g. MPI_DEBUG) to do a safe push.
(*) Including extra repos and extra packages:
You can also use the checkin-test.py script to continuously integrate
multiple git repos containing add-on packages. To do so, just run:
../checkin-test.py --extra-repos=<REPO1>,<REPO2>,... [options]
NOTE: You have to create local commits in all of the extra repos where there
are changes or the script will abort.
NOTE: Extra repos can be specified with more flexibility using the
--extra-repos-file and --extra-repos-type arguments (also see
--ignore-missing-extra-repos).
NOTE: Each of the last local commits in each of the changed repos will get
amended with the appended summary of what was enabled in the build/test (if
--append-test-results is set).
(*) Avoid changing any of the local commit SHA1s:
If you are pushing commits from a shared branch, it is critical that you do
not change any of the SHA1s of the commits. Changing the SHA1s for any of
the commits will mess up various multi-repo, multi-branch workflows. To
avoid changing any of the SHA1s of the local commits, one must run with:
../checkin-test.py --no-rebase --no-append-test-results [options]
(*) Performing a remote test/push:
If you develop on a slow machine like your laptop, doing an appropriate
level of testing can take a long time. In this case, you can pull the
changes to another faster remote workstation and do a more complete set of
tests and push from there. If you are knowledgeable with git, this will be
easy and natural to do, without any help from this script. However, this
script can still help and automate the steps and can do so in one command
invocation on the part of the developer.
On your slow local development machine 'mymachine', do the limited testing
with:
../checkin-test.py --do-all --no-enable-fwd-packages
On your fast remote test machine, do a full test and push with:
../checkin-test.py \
--extra-pull-from=<remote-repo>:master \
--do-all --push
where <remote-name> is a git remote repo name pointing to
mymachine:/some/dir/to/your/src (see 'git help remote').
NOTE: You can of course adjust the packages and/or build/test cases that get
enabled on the different machines.
NOTE: Once you invoke the checkin-test.py script on the remote test machine
and it has pulled the commits from mymachine, then you can start changing
files again on your local development machine and just check your email to
see what happens on the remote test machine.
NOTE: If something goes wrong on the remote test machine, you can either
work on fixing the problem there or you can fix the problem on your local
development machine and then do the process over again.
NOTE: If you alter the commits on the remote machine (such as squashing
commits), you will have trouble merging back on our local machine.
Therefore, if you have to to fix problems, make new commits and don't alter
the ones you pulled from your local machine (but rebasing them should be
okay as long as the local commits on mymachine are not pushed to other
repos).
NOTE: Git will resolve the duplicated commits when you pull the commits
pushed from the remote machine. Git knows that the commits are the same and
will do the right thing when rebasing (or just merging).
NOTE: This would also work for multiple repos if the remote name
'<remote-repo>' pointed to the right remote repo in all the local repos.
(*) Check push readiness status:
../checkin-test.py
This will examine results for the last testing process and send out an email
stating if the a push is ready to perform or not.
(*) See the default option values without doing anything:
../checkin-test.py --show-defaults
This is the easiest way to figure out what all of the default options are.
Hopefully the above documentation, the example use cases, the documentation of
the command-line arguments below, and some experimentation will be enough to
get you going using this script for all of your pre-push testing and pushes.
If that is not sufficient, send email to your development support team to ask
for help.
LOCAL DEFAULT COMMAND LINE DEFAULTS
-----------------------------------
If the file local-checkin-test-defaults.py exists in the current directory,
then it will be read in and will change the project defaults for the
command-line arguments. For example, a valid local-checkin-test-defaults.py
file would look like:
defaults = [
"-j10",
"--no-rebase",
"--ctest-options=-E '(PackageA_Test1|PackageB_Test2)'"
]
Any of the project's checkin-test.py command-line argument defaults can be
changed in this way. The updated defaults can be observed by running:
./checkin-test.py --show-defaults
Any command-line arguments explicitly passed in will override these local
defaults.
HANDLING OF PT, ST, AND EX CODE IN BUILT-IN AND EXTRA BUILDS:
-------------------------------------------------------------
This script will only process PT (Primary Tested) packages in the
--default-builds (e.g. MPI_DEBUG and SERIAL_RELEASE) builds. This is to avoid
problems of side-effects of turning on ST packages that would impact PT
packages (e.g. an ST package getting enabled that enables an ST TPL which
turns on support for that TPL in a PT package producing different code which
might work but the pure PT build without the extra TPL may actually be broken
and not know it). Therefore, any non-PT packages that are enabled (either
implicitly through changed files or explicitly by listing in --enable-packages)
will be turned off in the --default-builds builds. If none of the enabled
packages are PT, then they will all be disabled and the --default-builds
builds will be skipped.
In order to better support the development of ST and EX packages, this script
allows you to define some extra builds that will be invoked and used to
determine overall pass/fail before a potential push. The option
--st-extra-builds is used to specify extra builds that will test ST packages
(and also PT packages if any are enabled). If only PT packages are enabled
then the builds specified in --st-extra-builds will still be run. The
reasoning is that PT packages may contain extra ST features and therefore if
the goal is to test these ST builds it is desirable to also run these builds
because they also my impact downstream ST packages.
Finally, the option --extra-builds will test all enabled packages, including
EX packages, regardless of their test group. Therefore, when using
--extra-builds, be careful that you watch what packages are enabled. If you
change an EX package, it will be enabled in --extra-builds builds.
A few use cases might help better demonstrate the behavior. Consider
the following input arguments specifying extra builds
--st-extra-builds=MPI_DEBUG_ST --extra-builds=INTEL_DEBUG
with the packages Teuchos, Phalanx, and Meros where Teuchos is PT, Phalanx is
ST, and Meros is EX.
Here is what packages would be enabled in each of the builds:
--default-builds=MPI_DEBUG,SERIAL_RELEASE \
--st-extra-builds=MPI_DEBUG_ST \
--extra-builds=INTEL_DEBUG
and which packages would be excluded:
A) --enable-packages=Teuchos:
MPI_DEBUG: [Teuchos]
SERIAL_RELEASE: [Teuchos]
MPI_DEBUG_ST: [Teuchos]
INTEL_DEBUG: [Teuchos] Always enabled!
B) --enable-packages=Phalanx:
MPI_DEBUG: [] Skipped, no PT packages!
SERIAL_RELEASE: [] Skipped, no PT packages!
MPI_DEBUG_ST: [Phalanx]
INTEL_DEBUG: [Phalanx]
C) --enable-packages=Meros:
MPI_DEBUG: [] Skipped, no PT packages!
SERIAL_RELEASE: [] Skipped, no PT packages!
MPI_DEBUG_ST: [] Skipped, no PT or ST packages!
INTEL_DEBUG: [Meros]
D) --enable-packages=Teuchos,Phalanx:
MPI_DEBUG: [Teuchos]
SERIAL_RELEASE: [Teuchos]
MPI_DEBUG_ST: [Teuchos,Phalanx]
INTEL_DEBUG: [Teuchos,Phalanx]
E) --enable-packages=Teuchos,Phalanx,Meros:
MPI_DEBUG: [Teuchos]
SERIAL_RELEASE: [Teuchos]
MPI_DEBUG_ST: [Teuchos,Phalanx]
INTEL_DEBUG: [Teuchos,Phalanx,Meros]
The --extra-builds=INTEL_DEBUG build is always performed with all of the
enabled packages. This logic given above must be understood in order to
understand the output given in the script.
CONVENTIONS FOR COMMAND-LINE ARGUMENTS:
---------------------------------------
The command-line arguments are segregated into three broad categories: a)
action commands, b) aggregate action commands, and c) others.
a) The action commands are those such as --build, --test, etc. and are shown
with [ACTION] in their documentation. These action commands have no off
complement. If the action command appears, then the action will be performed.
b) Aggregate action commands such as --do-all and --local-do-all turn on sets
of other action commands and are shown with [AGGR ACTION] in their
documentation. The sub-actions that these aggregate action commands turn on
cannot be disabled with other arguments.
c) Other arguments are those that are not marked with [ACTION] or [AGGR
ACTION] tend to either pass in data and turn control flags on or off.
EXIT CODE:
---------
This script returns 0 if the actions requested are successful. This does not
necessarily imply that it is okay to do a push or that a push was done. For
example, if only --pull is passed in and is successful, then 0 will be
returned but that does *not* mean that it is okay to do a push. Therefore, a
return value of is a necessary but not sufficient condition for readiness to
push, it depends on the requested actions.
"""
# ToDo: Break up the above huge documentation block into different "topics"
# and then display those topics with --help-topic=<topic>. Also provide a
# --help-all that will combine all of the --help-topic documentation with the
# standard documentation to produce where is there now.
def runProjectTestsWithCommandLineArgs(commandLineArgs, configuration = {}):
clp = ConfigurableOptionParser(configuration.get('defaults', {}), usage=usageHelp)
clp.add_option(
"--project-configuration", dest="projectConfiguration", type="string", default="",
help="Custom file to provide configuration defaults for the project." \
+ " By default, the file project-checkin-test-config.py is looked for" \
+ " in <checkin-test-path> (in case it is symlinked into <projectDir>/checkin-test.py)" \
+ " if not found there, then it is looked for in <checkin-test-path>/../../.." \
+" (assuming default TriBITS snapshot <projectDir>/cmake/tribits/ci_support/)" \
+ " If this file is set to a location that is not in the" \
+ " project's base directory, then --src-dir must be set to point to the" \
+ " project's base directory."
)
clp.add_option(
"--show-defaults", dest="showDefaults", action="store_true",
help="Show the default option values and do nothing at all.",
default=False )
clp.add_option(
"--project-name", dest="projectName", action="store",
help="Set the project's name. This is used to locate various files.",
default=None)
clp.add_option(
'--src-dir', dest="srcDir", type="string", default="",
help="The source base directory for code to be tested. The default is determined" \
+" by the location of the found project-checkin-test-config.py file." )
configuredBuilds = [build for build, unused in
configuration.get('cmake', {}).get('default-builds', [])]
clp.add_option(
'--default-builds', dest='defaultBuilds', type='string',
default=','.join(configuredBuilds),
help="Comma separated list of builds that should always be run by default.")
clp.add_option(
"--extra-repos-file", dest="extraReposFile", type="string", default="",
help="File path to an extra repositories list file. If set to 'project', then " \
+"<project_dir>/cmake/ExtraRepositoriesList.cmake is read. See the argument " \
+"--extra-repos for details on how this list is used (default empty '')")
g_extraRepoTypesList = [""]
g_extraRepoTypesList.extend(g_knownTribitsTestRepoTypes)
addOptionParserChoiceOption(
"--extra-repos-type", "extraReposType", g_extraRepoTypesList, 0,
"The test type of repos to read from <extra_repos_file>.",
clp )
clp.add_option(
"--extra-repos", dest="extraRepos", type="string", default="",
help="List of comma separated extra repositories " \
+"containing extra packages that can be enabled. The order these repos is "
+"listed in not important. This option overrides --extra-repos-file.")
clp.add_option(
"--ignore-missing-extra-repos", dest="ignoreMissingExtraRepos", action="store_true",
help="If set, then extra repos read in from <extra_repos_file> will be ignored " \
+"and removed from list. This option is not applicable if <extra_repos_file>=='' " \
+"or <extra_repos_type>==''." )
clp.add_option(
"--require-extra-repos-exist", dest="ignoreMissingExtraRepos", action="store_false",
default=False,
help="If set, then all listed extra repos must exist or the script will exit. [default]" )
clp.add_option(
"--with-cmake", dest="withCmake", type="string", default="cmake",
help="CMake executable to use with cmake -P scripts internally (only set" \
+" by unit testing code).")
clp.add_option(
"--skip-deps-update", dest="skipDepsUpdate", action="store_true",
help="If set, skip the update of the dependency XML file. If the package structure" \
" has not changed since the last invocation, then it is safe to use this option.",
default=False )
clp.add_option(
"--enable-packages", dest="enablePackages", type="string", default="",
help="List of comma separated packages to test changes for" \
+" (example, 'Teuchos,Epetra'). If this list of packages is empty, then" \
+" the list of packages to enable will be determined automatically by examining" \
+" the set of modified files from the version control update log. Note that"\
+" this will skip the auto-detection of changed packages based on changed"\
+" files." )
clp.add_option(
"--enable-extra-packages", dest="enableExtraPackages", type="string", default="",
help="List of comma separated packages to test in addition to the packages" \
+" that are enabled determined automatically by examining" \
+" the set of modified files from the version control update log. This option"\
+" is mostly just used in ACI sync servers." )
clp.add_option(
"--disable-packages", dest="disablePackages", type="string", default="",
help="List of comma separated packages to explicitly disable" \
+" (example, 'Tpetra,NOX'). This list of disables will be appended after" \
+" all of the listed enables no mater how they are determined (see" \
+" --enable-packages option). NOTE: Only use this option to remove packages" \
+" that will not build for some reason. You can disable tests that run" \
+" by using the CTest option -E passed through the --ctest-options argument" \
+" in this script." )
addOptionParserChoiceOption(
"--enable-all-packages", "enableAllPackages", ('auto', 'on', 'off'), 0,
"Determine if all packages are enabled 'on', or 'off', or 'auto'" \
+" (let other logic decide). Setting to 'off' is appropriate when" \
+" the logic in this script determines that a global build file has changed" \
+" but you know that you don't need to rebuild and test every package for" \
+" a reasonable test. Setting --enable-packages effectively disables this" \
+" option. Setting this to 'off' does *not* stop the forward enabling" \
+" of downstream packages for packages that are modified or set by --enable-packages."\
+" Setting this to 'on' will skip the automatic detection of changed packages"\
+" based on changed files. It can be helpful to stop the auto-detection changed"\
+" packages when there are thousands of changed files and hundreds of defined"\
+" packages." ,
clp )
clp.add_option(
"--enable-fwd-packages", dest="enableFwdPackages", action="store_true",
help="Enable forward packages. [default]" )
clp.add_option(
"--no-enable-fwd-packages", dest="enableFwdPackages", action="store_false",
help="Do not enable forward packages.", default=True )
clp.add_option(
"--continue-if-no-updates", dest="abortGracefullyIfNoChangesPulled", action="store_false",
help="If set, then the script will continue if no updates are pulled from any repo. [default]",
default=False )
clp.add_option(
"--abort-gracefully-if-no-changes-pulled", dest="abortGracefullyIfNoChangesPulled", action="store_true",
help="If set, then the script will abort gracefully if no updates are pulled from any repo.",
default=False )
clp.add_option(
"--continue-if-no-changes-to-push", dest="abortGracefullyIfNoChangesToPush", action="store_false",
help="If set, then the script will continue if no changes to push from any repo. [default]",
default=False )
clp.add_option(
"--abort-gracefully-if-no-changes-to-push", dest="abortGracefullyIfNoChangesToPush", action="store_true",
help="If set, then the script will abort gracefully if no changes to push from any repo.",
default=False )
clp.add_option(
"--continue-if-no-enables", dest="abortGracefullyIfNoEnables", action="store_false",
help="If set, then the script will continue if no packages are enabled. [default]",
default=False )
clp.add_option(
"--abort-gracefully-if-no-enables", dest="abortGracefullyIfNoEnables", action="store_true",
help="If set, then the script will abort gracefully if no packages are enabled.",
default=False )
clp.add_option(
"--extra-cmake-options", dest="extraCmakeOptions", type="string",
default=configuration.get('extra-cmake-options', ''),
help="Extra options to pass to 'cmake' after all other options." \
+" This should be used only as a last resort. To disable packages, instead use" \
+" --disable-packages. To change test categories, use --test-categories." )
clp.add_option(
"--test-categories", dest="testCategories", type="string",
default="BASIC",
help="." \
+" Change the test categories. Can be 'BASIC', 'CONTINUOUS', " \
" 'NIGHTLY', or 'HEAVY' (default set by project, see --show-defaults)." )
clp.add_option(
"-j", "--parallel", dest="overallNumProcs", type="string", default="",
help="The options to pass to make and ctest (e.g. -j4)." )
clp.add_option(
"--use-makefiles", dest="useNinja", action="store_false",
help="If set, then -G'Unix Makfiles' used for backend build tool." \
+" Note: The command 'make' must be in the default path. [default]",
default=False )
clp.add_option(
"--use-ninja", dest="useNinja", action="store_true",
help="If set, then -GNinja used for backend build tool." \
+" Note: The comamnd 'ninja' must be in the default path." ,
default=False )
clp.add_option(
"--make-options", dest="makeOptions", type="string", default="",
help="The options to pass to 'make' (e.g. -j4) or ninja" \
+" (if --use-ninja given)." )
clp.add_option(
"--ctest-options", dest="ctestOptions", type="string", default="",
help="Extra options to pass to 'ctest' (e.g. -j2)." )
clp.add_option(
"--ctest-timeout", dest="ctestTimeOut", type="float", default=300,
help="timeout (in seconds) for each single 'ctest' test (e.g. 180" \
+" for three minutes). This sets the CMake cache var DART_TESTING_TIMEOUT"
+" which becomes the default timeout for tests, even when running raw"
+" ctest. This value can be overridden using the ctest argument --timeout."
+" Individual tests may have their own timeouts set which will not be"
+" impacted by this default global timeout. See the configure variable"
+" <Project>_SCALE_TEST_TIMEOUT to scale up timeouts for"
+" all tests, even those that have individuals timeouts set." )
clp.add_option(
"--show-all-tests", dest="showAllTests", action="store_true",
help="Show all of the tests in the summary email and in the commit message" \
+" summary (see --append-test-results)." )
clp.add_option(
"--no-show-all-tests", dest="showAllTests", action="store_false",
help="Don't show all of the test results in the summary email. [default]",
default=False )
clp.add_option(
"--without-default-builds", dest="withoutDefaultBuilds", action="store_true",
default=False,
help="Skip the default builds (same as --default-builds='')." \
+" You would use option along with --extra-builds=BUILD1,BUILD2,... to run your own" \
+" local custom builds." )
clp.add_option(
"--st-extra-builds", dest="stExtraBuilds", type="string", default="",
help="List of comma-separated ST extra build names. For each of the build names in" \
+" --st-extra-builds=<BUILD1>,<BUILD2>,..., there must be a file <BUILDN>.config in" \
+" the local directory along side the COMMON.config file that defines the special" \
+" build options for the extra build." )
clp.add_option(
"--ss-extra-builds", dest="ssExtraBuilds", type="string", default="",
help="DEPRECATED! Use --st-extra-builds instead!. (Default empty "")" )
clp.add_option(
"--extra-builds", dest="extraBuilds", type="string", default="",
help="List of comma-separated extra build names. For each of the build names in" \
+" --extra-builds=<BUILD1>,<BUILD2>,..., there must be a file <BUILDN>.config in" \
+" the local directory along side the COMMON.config file that defines the special" \
+" build options for the extra build." )
clp.add_option(
"--log-file", dest="logFile", type="string", default="checkin-test.out",
help="File used for detailed log info." )
clp.add_option(
"--send-email-to", dest="sendEmailTo", type="string",
default=getCmndOutput("git config --get user.email", True, False),
help="List of comma-separated email addresses to send email notification to" \
+" after every build/test case finishes and at the end for an overall summary" \
+" and push status." \
+" By default, this is the email address you set for git returned by" \
+" `git config --get user.email`. In order to turn off email" \
+" notification, just set --send-email-to='' and no email will be sent." )
clp.add_option(
"--skip-case-send-email", dest="skipCaseSendEmail", action="store_true",
help="If set then if a build/test case is skipped for some reason (i.e." \
+" because no packages are enabled) then an email will go out for that case." \
+" [default]" )
clp.add_option(
"--skip-case-no-email", dest="skipCaseSendEmail", action="store_false",
help="If set, then if a build/test case is skipped for some reason (i.e." \
+" because no packages are enabled) then no email will go out for that case." \
+" (opposite of --skip-case-send-email) [default]",
default=True )
addOptionParserChoiceOption(
"--send-build-case-email", "sendBuildCaseEmail",
('always', 'only-on-failure', 'never'), 0,
"Determines when email goes out to --send-email-to=<email> for a build" \
+" case. But the final status email will still go out if --send-email-to=<email>" \
+" is not empty. [default = 'always']",
clp )
clp.add_option(
"--send-email-for-all", dest="sendEmailOnlyOnFailure", action="store_false",
help="If set, then emails will get sent out for all operations. [default]" )
clp.add_option(
"--send-email-only-on-failure", dest="sendEmailOnlyOnFailure", action="store_true",
help="If set, then emails will only get sent out for failures.",
default=False )
clp.add_option(
"--send-email-to-on-push", dest="sendEmailToOnPush", type="string",
default=configuration.get('SendEmailOnPush', ''),
help="List of comma-separated email addresses to send email notification to" \
+" on a successful push. This is used to log pushes to a central list." \
+" In order to turn off this email" \
+" notification, just set --send-email-to-on-push='' and no email will be sent" \
+" to these email lists." )
clp.add_option(
"--force-push", dest="forcePush", action="store_true",
help="Force the local push even if there are build/test errors." \
+" WARNING: Only do this when you are 100% certain that the errors are not" \
+" caused by your code changes. This only applies when --push is specified" \
+" and this script.")
clp.add_option(
"--no-force-push", dest="forcePush", action="store_false", default=False,
help="Do not force a push if there are failures. [default]" )
clp.add_option(
"--do-push-readiness-check", dest="doPushReadinessCheck", action="store_true",
help="Check the push readiness status at the end and send email if not actually" \
+" pushing. [default]" )
clp.add_option(
"--skip-push-readiness-check", dest="doPushReadinessCheck", action="store_false",
default=True,
help="Skip push status check." )
clp.add_option(
"--rebase", dest="rebase", action="store_true",
help="Rebase the local commits on top of <remoterepo>/<remotebranch> before amending" \
+" the last commit and pushing. Rebasing keeps a nice linear commit" \
+" history like with CVS or SVN and will work perfectly for the basic" \
+" workflow of adding commits to the 'master' branch and then syncing" \
+" up with <remoterepo>/<remotebranch> before the final push. [default]" )
clp.add_option(
"--no-rebase", dest="rebase", action="store_false",
help="Do *not* rebase the local commits on top of <remoterepo>/<remotebranch> before" \
+" amending the final commit and pushing. This allows for some more " \
+" complex workflows involving local branches with multiple merges." \
+" However, this will result in non-linear history and will allow for" \
+" trivial merge commits with <remoterepo>/<remotebranch> to get pushed. This mode" \
+" should only be used in cases where the rebase mode will not work or " \
+" when it is desired to use a merge commit to integrate changes on a" \
+" branch that you wish be able to easily back out. For sophisticated" \
+" users of git, this may in fact be the preferred mode.",
default=True )
clp.add_option(
"--append-test-results", dest="appendTestResults", action="store_true",
help="Before the final push, amend the most recent local commit by appending a" \
+" summary of the test results. This provides a record of what builds" \
+" and tests were performed in order to test the local changes. This is only " \
+" performed if --push is also set. NOTE: If the same" \
+" local commit is amended more than once, the prior test summary sections will be" \
+" overwritten with the most recent test results from the current run. [default]" )
clp.add_option(
"--no-append-test-results", dest="appendTestResults", action="store_false",
help="Do not amend the last local commit with test results. NOTE: If you have" \
+" uncommitted local changes that you do not want this script to commit then you" \
+" must select this option to avoid this last amending commit. Also, if you are" \
+" pushing commits from a shared branch and don't want to change any of the SHA1s" \
+" for the commits, then you must set this option!",
default=True )
clp.add_option(
"--extra-pull-from", dest="extraPullFrom", type="string", default="",
help="Optional extra git pull(s) to merge in changes from after" \
+" pulling in changes from the tracking branch. The format of this argument is:" \
+" ...,<local-repoi>:<remote-repoi>:<remote-branchi>,... where each pull" \
+" specification gives the name (not the directory) of the local repo <local-repoi>" \
+", the remote repo name <remote-repoi>, and the branch in the remote repo to pull" \
+" <remote-branchi>. If only two semicolons ':' are given then an pull field takes" \
+" the form ...,<remote-repo>:<remote-branch>,... where the remote <remote-name>" \
+" must be defined in all the repos and the branch <remote-branch> must exist" \
+" in all the remote repos. If the <remote-repoi> is empty such as with" \
+" ...,:<remote-repoi>:<remote-branchi>,... then this matches the base git repo." \
+" The extra pull(s) are only done if --pull is also specified. NOTE: when using" \
+" --extra-repos=<repo0>,<repo1>,... the <local-repoi> must be a named repository" \
+ " that is present in all of the git repos or it will be an error." )
clp.add_option(
"--allow-no-pull", dest="allowNoPull", action="store_true", default=False,
help="Allowing for there to be no pull performed and still doing the other actions." \
+" This option is useful for testing against local changes without having to" \
+" get the updates from the global repo. However, if you don't pull, you can't" \
+" push your changes to the global repo. WARNING: This does *not* stop a pull" \
+" attempt from being performed by --pull or --do-all!" )
clp.add_option(
"--wipe-clean", dest="wipeClean", action="store_true", default=False,
help="[ACTION] Blow existing build directories and build/test results. The action can be" \
+" performed on its own or with other actions in which case the wipe clean will be" \
+" performed before any other actions. NOTE: This will only wipe clean the builds" \
+" that are specified and will not touch those being ignored (e.g. SERIAL_RELEASE" \
+" will not be removed if --default-builds=MPI_DEBUG is specified)." )
clp.add_option(
"--pull", dest="doPull", action="store_true", default=False,
help="[ACTION] Do the pull from the tracking branch and optionally also" \
+" merge in changes from the repo pointed to by --extra-pull-from.")
clp.add_option(
"--configure", dest="doConfigure", action="store_true", default=False,
help="[ACTION] Do the configure step." )
clp.add_option(
"--build", dest="doBuild", action="store_true", default=False,
help="[ACTION] Do the build step." )
clp.add_option(
"--test", dest="doTest", action="store_true", default=False,
help="[ACTION] Do the running of the enabled tests." )
clp.add_option(
"--local-do-all", dest="localDoAll", action="store_true", default=False,
help="[AGGR ACTION] Do configure, build, and test with no pull (same as setting" \
+" --allow-no-pull ---configure --build --test)." \
+" This is the same as --do-all except it does not do --pull and also allows for no pull." )
clp.add_option(
"--do-all", dest="doAll", action="store_true", default=False,
help="[AGGR ACTION] Do update, configure, build, and test (same as --pull --configure" \
+" --build --test). NOTE: This will do a --pull regardless if --allow-no-pull" \
+" is set or not. To avoid the pull, use --local-do-all." )
clp.add_option(
"--push", dest="doPush", action="store_true", default=False,
help="[ACTION] Push the committed changes in the local repo into to remote repo" \
+" pointed to by the tracking branch." )
clp.add_option(
"--execute-on-ready-to-push", dest="executeOnReadyToPush", type="string", default="",
help="[ACTION] A command to execute on successful execution and 'READY TO PUSH'" \
+" status from this script. This can be used to do a remote SSH invocation to a" \
+" remote machine to do a remote pull/test/push after this machine finishes." )
(options, args) = clp.parse_args(args=commandLineArgs)
# NOTE: Above, in the pairs of boolean options, the *last* add_option(...)
# takes effect! That is why the commands are ordered the way they are!
#
# Echo the command-line
#
print ""
print "**************************************************************************"
print "Script: checkin-test.py \\"
print " --src-dir='" + options.srcDir+"' \\"
print " --default-builds='" + options.defaultBuilds + "' \\"
print " --extra-repos-file='"+options.extraReposFile+"' \\"
print " --extra-repos-type='"+options.extraReposType+"' \\"
print " --extra-repos='"+options.extraRepos+"' \\"
if options.ignoreMissingExtraRepos:
print " --ignore-missing-extra-repos \\"
else:
print " --require-extra-repos-exist \\"
if options.skipDepsUpdate:
print " --skip-deps-update \\"
print " --enable-packages='"+options.enablePackages+"' \\"
print " --enable-extra-packages='"+options.enableExtraPackages+"' \\"
print " --disable-packages='"+options.disablePackages+"' \\"
print " --enable-all-packages='"+options.enableAllPackages+"'\\"
if options.enableFwdPackages:
print " --enable-fwd-packages \\"
else:
print " --no-enable-fwd-packages \\"
if options.abortGracefullyIfNoChangesPulled:
print " --abort-gracefully-if-no-changes-pulled \\"
else:
print " --continue-if-no-updates \\"
if options.abortGracefullyIfNoChangesToPush:
print " --abort-gracefully-if-no-changes-to-push \\"
else:
print " --continue-if-no-changes-to-push \\"
if options.abortGracefullyIfNoEnables:
print " --abort-gracefully-if-no-enables \\"
else:
print " --continue-if-no-enables \\"
print " --extra-cmake-options='"+options.extraCmakeOptions+"' \\"
print " --test-categories='"+options.testCategories+"' \\"
if options.overallNumProcs:
print " -j"+options.overallNumProcs+" \\"
if options.useNinja:
print " --use-ninja \\"
else:
print " --use-makefiles \\"
print " --make-options='"+options.makeOptions+"' \\"
print " --ctest-options='"+options.ctestOptions+"' \\"
print " --ctest-timeout="+str(options.ctestTimeOut)+" \\"
if options.showAllTests:
print " --show-all-tests \\"
else:
print " --no-show-all-tests \\"
if options.withoutDefaultBuilds:
print " --without-default-builds \\"
print " --st-extra-builds='"+options.stExtraBuilds+"' \\"
print " --extra-builds='"+options.extraBuilds+"' \\"
print " --log-file='"+options.logFile+"' \\"
print " --send-email-to='"+options.sendEmailTo+"' \\"
if options.skipCaseSendEmail:
print " --skip-case-send-email \\"
else:
print " --skip-case-no-email \\"
print " --send-build-case-email="+str(options.sendBuildCaseEmail)+" \\"
if not options.sendEmailOnlyOnFailure:
print " --send-email-for-all \\"
else:
print " --send-email-only-on-failure \\ "
print " --send-email-to-on-push='"+options.sendEmailToOnPush+"' \\"
if options.forcePush:
print " --force-push \\"
else:
print " --no-force-push \\"
if options.doPushReadinessCheck:
print " --do-push-readiness-check \\"
else:
print " --skip-push-readiness-check \\"
if options.rebase:
print " --rebase \\"
else:
print " --no-rebase \\"
if options.appendTestResults:
print " --append-test-results \\"
else:
print " --no-append-test-results \\"
if options.extraPullFrom:
print " --extra-pull-from='"+options.extraPullFrom+"' \\"
if options.allowNoPull:
print " --allow-no-pull \\"
if options.wipeClean:
print " --wipe-clean \\"
if options.doPull:
print " --pull \\"
if options.doConfigure:
print " --configure \\"
if options.doBuild:
print " --build \\"
if options.doTest:
print " --test \\"
if options.localDoAll:
print " --local-do-all \\"
if options.doAll:
print " --do-all \\"
if options.doPush:
print " --push \\"
if options.executeOnReadyToPush:
print " --execute-on-ready-to-push=("+options.executeOnReadyToPush+") \\"
if options.ssExtraBuilds:
print " --ss-extra-builds='"+options.ssExtraBuilds+"' \\"
print "\nWARNING: --ss-extra-builds is deprecated! Use --st-extra-builds instead!"
if options.stExtraBuilds:
print "ERROR: Can't set deprecated --ss-extra-builds and --st-extra-builds together!"
sys.exit(3)
options.stExtraBuilds = options.ssExtraBuilds
#
# Check and adjust the input arguments
#
if not os.path.isabs(options.srcDir):
options.srcDir = os.path.abspath(options.srcDir)
if options.doAll and options.localDoAll:
print "\nError, you can not use --do-all and --local-do-all together! Use on or the other!"
sys.exit(1)
if options.doAll and options.allowNoPull:
print "\nError, you can not use --do-all and --allow-no-pull together! (see the" \
" documentation for the --do-all, --local-do-all, and --allow-no-pull arguments.)"
sys.exit(2)
if options.extraPullFrom:
for extraPullFromArg in options.extraPullFrom.split(","):
# Will validate form of argument
getLocalRepoRemoteRepoAndBranchFromExtraPullArg(extraPullFromArg)
#
# Execute the checkin test guts
#
import time
if not options.showDefaults:
print "\nStarting time:", getCmndOutput("date",True)
tribitsDir = os.path.abspath(getCompleteFileDirname(__file__)+"/..") # TriBITS dir!
t1 = time.time()
success = checkinTest(tribitsDir, options, configuration)
t2 = time.time()
print "\nTotal time for checkin-test.py =", formatMinutesStr((t2-t1)/60.0)
print "\nFinal time:", getCmndOutput("date",True)
if options.ssExtraBuilds:
print "\n***"
print "*** FINAL WARNING: stop using deprecated --ss-extra-builds! Use --st-extra-builds instead!"
print "***"
if success:
print "\nREQUESTED ACTIONS: PASSED\n"
return True
else:
print "\nREQUESTED ACTIONS: FAILED\n"
return False
else:
return True
def getConfigurationSearchPaths():
"""
Gets a list of paths to search for the configuration. If this file
was invoked from a symlink, look in the directory that contains the
symlink. The returned list will always contain at least one element.
"""
result = []
# First, look for the checkin-test.py file's base directory path. It is
# common practice to symbolically link the checkin-test.py script into the
# project's base source directory. NOTE: Don't use realpath here! We don't
# want to follow symbolic links!
result.append(os.path.dirname(os.path.abspath(__file__)))
# Second, look for the configuration file assuming the checkin-test.py
# script is run out of the standard snapshotted tribits directory
# <project-root>/cmake/tribits/ci_support
result.append(os.path.join(thisFileRealAbsBasePath, '..', '..', '..'))
return result
def loadConfigurationFile(filepath):
if os.path.exists(filepath):
sys_path_old = sys.path
try:
modulePath = os.path.dirname(filepath)
moduleFile = os.path.basename(filepath)
moduleName, extension = os.path.splitext(moduleFile)
sys.path = [modulePath] + sys_path_old
try:
if debugDump:
print "\nLoading project configuration from %s..." % filepath
print "\nsys.path =", sys.path
configuration = __import__(moduleName).configuration
if debugDump:
print "\nSetting the default --src-dir='"+modulePath+"'"
configuration.get("defaults").update({"--src-dir" : modulePath})
return configuration
except Exception, e:
print e
raise e
finally:
sys.path = sys_path_old
if debugDump:
print "\nsys.path =", sys.path
else:
raise Exception('The file %s does not exist.' % filepath)
def getLocalCmndLineArgs():
localDefaults = []
checkinTestDir = os.getcwd()
localProjectDefaultsBaseName = "local-checkin-test-defaults"
localProjectDefaultsFile = checkinTestDir+"/"+localProjectDefaultsBaseName+".py"
#print "localProjectDefaultsFile = '"+localProjectDefaultsFile+"'"
if os.path.exists(localProjectDefaultsFile):
sys_path_old = sys.path
try:
sys.path = [checkinTestDir] + sys_path_old
if debugDump:
print "\nLoading local default command-line args from "+localProjectDefaultsFile+"..."
print "\nsys.path =", sys.path
localDefaults = __import__(localProjectDefaultsBaseName).defaults
finally:
sys.path = sys_path_old
if debugDump:
print "\nsys.path =", sys.path
return localDefaults
def locateAndLoadConfiguration(path_hints = []):
"""
Locate and load a module called checkin_test_project_configuration.py. The
path_hints argument can be used to provide location hints at which to locate
the file. Returns a configuration dictionary. If the module is not found,
this dictionary will be empty.
"""
for path in path_hints:
candidate = os.path.join(path, "project-checkin-test-config.py")
if debugDump: print "\nLooking for candidate configuration file '%s'" % candidate
if os.path.exists(candidate):
return loadConfigurationFile(candidate)
return {}
#
# Main
#
def main(cmndLineArgs):
# See if the help option is set or not
helpOpt = len( set(cmndLineArgs) & set(("--help", "-h")) ) > 0
# See if --show-defaults was set or not
showDefaultsOpt = len( set(cmndLineArgs) & set(("--show-defaults", "dummy")) ) > 0
if (not helpOpt) and (not showDefaultsOpt):
# Get the name of the log file from the input arguments
logFileName = "checkin-test.out"
for cmndLineArg in cmndLineArgs:
cmndLineSplit = cmndLineArg.split("=")
if cmndLineSplit[0].strip() == "--log-file":
logFileName = cmndLineSplit[1].strip()
logFile = open(logFileName, "w", buffering=0) # 0 == no buffering
# NOTE: Above, we need to set biffering=0 to make sure that each line that
# gets written is written out the file. The is critical so that the user
# can to a `tail -f <log-file>` to see what is going one.
else:
logFile = None
# There are a lot of print statements in the implementation. It's
# easier to reset sys.stdout and sys.stderr to a TeeOutput object
# than to replace them.
teeOutput = TeeOutput(logFile)
originalStdout = sys.stdout
originalStderr = sys.stderr
try:
sys.stdout = teeOutput
sys.stderr = teeOutput
try:
# See if there is a configuration file override.
configuration = None
for arg in cmndLineArgs:
if arg.startswith('--project-configuration='):
print "Found configuration override %s..." % arg
configuration = loadConfigurationFile(arg.split('=')[1])
elif not configuration and arg.startswith('--src-dir='):
configuration = locateAndLoadConfiguration([arg.split('=')[1]])
if not configuration:
configuration = locateAndLoadConfiguration(getConfigurationSearchPaths())
localCmndLineArgs = getLocalCmndLineArgs()
if localCmndLineArgs:
if debugDump:
print "\ncmndLineArgs =", cmndLineArgs
print "\nlocalCmndLineArgs =", localCmndLineArgs
cmndLineArgs = localCmndLineArgs + cmndLineArgs
if debugDump:
print "\ncmndLineArgs =", cmndLineArgs
if debugDump:
print "\nConfiguration loaded from configuration file =", configuration
success = runProjectTestsWithCommandLineArgs(cmndLineArgs, configuration)
except SystemExit, e:
# In Python 2.6, SystemExit inherits Exception, but for proper exit
# behavior the SystemExit exception must propagate all the way to the top
# of the call stack. It cannot get handled by the catch Exception below.
raise e
except Exception, e:
success = False
traceback.print_exc(file=teeOutput)
finally:
# Close the log file
if logFile: logFile.close()
# Reset stdout and stderr
sys.stdout = originalStdout
sys.stderr = originalStderr
if success:
return 0
else:
return 1
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))
|