|
|
@ -974,7 +974,6 @@ int main(int argc, char** argv) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Stage 2: Build all packages in parallel
|
|
|
|
// Stage 2: Build all packages in parallel
|
|
|
|
if(!has_failures) {
|
|
|
|
|
|
|
|
log_info("Starting Stage 2: Building all packages.");
|
|
|
|
log_info("Starting Stage 2: Building all packages.");
|
|
|
|
std::vector<std::future<void>> build_futures;
|
|
|
|
std::vector<std::future<void>> build_futures;
|
|
|
|
for(auto &pkg : packages) {
|
|
|
|
for(auto &pkg : packages) {
|
|
|
@ -1000,10 +999,8 @@ int main(int argc, char** argv) {
|
|
|
|
has_failures = true;
|
|
|
|
has_failures = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Stage 3: Dput upload all packages in parallel
|
|
|
|
// Stage 3: Dput upload all packages in parallel
|
|
|
|
if(!has_failures) {
|
|
|
|
|
|
|
|
log_info("Starting Stage 3: Uploading all packages with dput.");
|
|
|
|
log_info("Starting Stage 3: Uploading all packages with dput.");
|
|
|
|
std::vector<std::future<void>> upload_futures;
|
|
|
|
std::vector<std::future<void>> upload_futures;
|
|
|
|
for(auto &pkg : packages) {
|
|
|
|
for(auto &pkg : packages) {
|
|
|
@ -1029,10 +1026,8 @@ int main(int argc, char** argv) {
|
|
|
|
has_failures = true;
|
|
|
|
has_failures = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Stage 4: Run Lintian on all packages in parallel
|
|
|
|
// Stage 4: Run Lintian on all packages in parallel
|
|
|
|
if(!has_failures) {
|
|
|
|
|
|
|
|
log_info("Starting Stage 4: Running Lintian on all packages.");
|
|
|
|
log_info("Starting Stage 4: Running Lintian on all packages.");
|
|
|
|
std::vector<std::future<void>> lintian_futures;
|
|
|
|
std::vector<std::future<void>> lintian_futures;
|
|
|
|
for(auto &pkg : packages) {
|
|
|
|
for(auto &pkg : packages) {
|
|
|
@ -1051,7 +1046,6 @@ int main(int argc, char** argv) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log_info("Completed Stage 4: All Lintian runs completed.");
|
|
|
|
log_info("Completed Stage 4: All Lintian runs completed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Proceed to summary and cleanup
|
|
|
|
// Proceed to summary and cleanup
|
|
|
|
summary(skip_cleanup);
|
|
|
|
summary(skip_cleanup);
|
|
|
|