From fa1467a60ce80154a46273bdd385060c00794ac3 Mon Sep 17 00:00:00 2001 From: Maya Raman Date: Wed, 21 Feb 2024 13:24:11 -0500 Subject: [PATCH] Removing lines for downloadBuildDependencies when building with makefiles (#999) removing lines for downloadBuildDependencies in makefiles --- src/job/jobHandler.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/job/jobHandler.ts b/src/job/jobHandler.ts index e8479eb7a..5b854fefa 100644 --- a/src/job/jobHandler.ts +++ b/src/job/jobHandler.ts @@ -531,8 +531,6 @@ export abstract class JobHandler { this._logger.save(this._currJob._id, 'Checked Commit'); await this.pullRepo(); this._logger.save(this._currJob._id, 'Pulled Repo'); - await this.getAndDownloadBuildDependencies(); - this._logger.save(this._currJob._id, 'Downloaded Build dependencies'); this.prepBuildCommands(); this._logger.save(this._currJob._id, 'Prepared Build commands'); await this.prepNextGenBuild();