From 883750f3f75a50ec1027301785ad33c6d5297efc Mon Sep 17 00:00:00 2001 From: Seung Park Date: Mon, 24 Jun 2024 18:56:10 -0400 Subject: [PATCH] test with logs --- Dockerfile | 2 +- src/job/jobHandler.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4963d8fc0..fbb7f247b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -72,7 +72,7 @@ ENV PATH="${WORK_DIRECTORY}/.cargo/bin:${PATH}" # get shared.mk -RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/meta/makefiles/shared.mk -o shared.mk +RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/DOP-4578-mk/makefiles/shared.mk -o shared.mk # install snooty frontend and docs-tools RUN git clone -b v${SNOOTY_FRONTEND_VERSION} --depth 1 https://github.com/mongodb/snooty.git \ diff --git a/src/job/jobHandler.ts b/src/job/jobHandler.ts index 4425d8d36..394432efa 100644 --- a/src/job/jobHandler.ts +++ b/src/job/jobHandler.ts @@ -585,6 +585,7 @@ export abstract class JobHandler { let buildStepOutput: CliCommandResponse; + this.logger.save(job._id, `calling nextgenparse with env flag ${process.env['SNOOTY_PARSER_VERSION']}`); const parseFunc = async () => nextGenParse({ job, patchId }); buildStepOutput = await this.wrapWithBenchmarks(parseFunc, 'parseExe'); this.logger.save(job._id, 'Repo Parsing Complete');