Skip to content

Commit

Permalink
build deps before executeBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeigs committed Nov 22, 2023
1 parent 178e680 commit cf18066
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/job/jobHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit cf18066

Please sign in to comment.