Skip to content

Commit

Permalink
env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeigs committed Nov 22, 2023
1 parent e320a67 commit 178e680
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/job/jobHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,14 +350,14 @@ export abstract class JobHandler {
} else if (key === 'next-gen-html') {
this._logger.save(this.currJob._id, `running nextGenHtml!`);
await nextGenHtml(preppedLogger);
// } else if (key === 'get-build-dependencies') {
// this._logger.save(this.currJob._id, `running getBuildStuff!!`);
// await prepareBuildAndGetDependencies(
// this.currJob.payload.repoName,
// thisJob.payload.project,
// baseUrl,
// preppedLogger
// );
} else if (key === 'get-build-dependencies') {
this._logger.save(this.currJob._id, `running getBuildStuff!!!!`);
await prepareBuildAndGetDependencies(
this.currJob.payload.repoName,
thisJob.payload.project,
baseUrl,
preppedLogger
);
} else {
if (stages[key]) {
const makeCommandsWithBenchmarksResponse = await this.callWithBenchmark(command, stages[key]);
Expand Down Expand Up @@ -533,8 +533,8 @@ export abstract class JobHandler {
this._logger.save(this._currJob._id, 'Patch Applied');
await this.downloadMakeFile();
this._logger.save(this._currJob._id, 'Downloaded Makefile');
await this.setEnvironmentVariables();
this._logger.save(this._currJob._id, 'Prepared Environment variables');
// await this.setEnvironmentVariables();
// this._logger.save(this._currJob._id, 'Prepared Environment variables');
return await this.executeBuild();
}

Expand Down

0 comments on commit 178e680

Please sign in to comment.