summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-04-04 00:10:12 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-04-04 00:10:12 -0700
commit68b0b6bcd38437b50288530ca975f3da53b6bb19 (patch)
treec1ad41e200039ba20d79466a33e8559a635bf997
parent753a639aa368adbb053f9e8362c6e7bd71db5f55 (diff)
downloaddotfiles-68b0b6bcd38437b50288530ca975f3da53b6bb19.tar.gz
run autopkgtest first as piuparts often has false positives
-rwxr-xr-xbin/buildssrht-preupload7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/buildssrht-preupload b/bin/buildssrht-preupload
index 12751693..8ae823e0 100755
--- a/bin/buildssrht-preupload
+++ b/bin/buildssrht-preupload
@@ -76,9 +76,10 @@ $manifest->{tasks} = [
"dgit --quilt=$quilt sbuild -d $dist --no-run-lintian"
]
],
- [lintian => ["lintian $changes"]],
- [piuparts => ["sudo piuparts --no-eatmydata --schroot $schroot $changes"]],
- [autopkgtest => ["autopkgtest $changes -- schroot $schroot"]]];
+ [lintian => ["lintian $changes"]],
+ [autopkgtest => ["autopkgtest $changes -- schroot $schroot"]],
+ [piuparts => ["sudo piuparts --no-eatmydata --schroot $schroot $changes"]]
+];
my $client = REST::Client->new;
$client->setHost("https://builds.sr.ht");