scripts/cijobs.pl: try "current branch" first then "master"

This commit is contained in:
Daniel Stenberg 2022-04-30 11:33:00 +02:00
parent 2e2767a378
commit 0107967387
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -495,7 +495,8 @@ sub zuul {
return $c;
}
my $tag = "origin/master";
my $tag = `git rev-parse --abbrev-ref HEAD 2>/dev/null` || "master";
chomp $tag;
githubactions($tag);
azurepipelines($tag);
appveyor($tag);