Home | History | Annotate | Download | only in tests

Lines Matching refs:git

50 # --nocvsup                Don't pull from git even though it is a git tree
51 # --nogitpull Don't pull from git even though it is a git tree
58 # if [curl-daily-name] is omitted, a 'curl' git directory is assumed.
69 use vars qw($version $fixed $infixed $CURLDIR $git $pwd $build $buildlog
81 # Determine if we're running from git or a canned copy of curl,
84 if (-f ".git/config") {
88 $git=1;
141 $git=0; # a given dir, assume not using git
376 if ($git && -d "$CURLDIR/.git") {
377 logit "$CURLDIR is verified to be a fine git source dir";
382 $have_embedded_ares = 1 if (-f "$CURLDIR/ares/GIT-INFO");
383 } elsif (!$git && -f "$CURLDIR/tests/testcurl.pl") {
388 mydie "$CURLDIR is not a daily source dir or checked out from git!"
418 # Do the git thing, or not...
419 if ($git) {
423 # update quietly to the latest git
425 logit "skipping git pull (--nogitpull)";
427 logit "run git pull in curl";
428 system("git pull 2>&1");
430 logit "failed to update from curl git ($?), continue anyway" if ($?);
432 # Set timestamp to the UTC the git update took place.
437 @commits=`git log --pretty=oneline --abbrev-commit -5`;
438 logit "The most recent curl git commits:";
444 if (-d "ares/.git") {
448 logit "skipping git pull (--nogitpull) in ares";
450 logit "run git pull in ares";
451 system("git pull 2>&1");
453 logit "failed to update from ares git ($?), continue anyway" if ($?);
455 # Set timestamp to the UTC the git update took place.
460 @commits=`git log --pretty=oneline --abbrev-commit -5`;
461 logit "The most recent ares git commits:";
505 # Set timestamp to the one in curlver.h if this isn't a git test build.