From cf180661aa772bcbfc8af45d2c4ab3f72721ed06 Mon Sep 17 00:00:00 2001 From: Matt Meigs Date: Wed, 22 Nov 2023 12:47:45 -0500 Subject: [PATCH] build deps before executeBuild --- src/job/jobHandler.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/job/jobHandler.ts b/src/job/jobHandler.ts index 23f316905..93aff4198 100644 --- a/src/job/jobHandler.ts +++ b/src/job/jobHandler.ts @@ -533,6 +533,13 @@ export abstract class JobHandler { this._logger.save(this._currJob._id, 'Patch Applied'); await this.downloadMakeFile(); this._logger.save(this._currJob._id, 'Downloaded Makefile'); + this._logger.save(this.currJob._id, `running getBuildStuff!!!!`); + await prepareBuildAndGetDependencies( + this.currJob.payload.repoName, + this._currJob.payload.project, + 'https://mongodbcom-cdn.website.staging.corp.mongodb.com', + (message: string) => this._logger.save(this._currJob._id, message) + ); // await this.setEnvironmentVariables(); // this._logger.save(this._currJob._id, 'Prepared Environment variables'); return await this.executeBuild();