Skip to content

Commit

Permalink
[DOP-4097]: Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
branberry committed Nov 21, 2023
1 parent 0f4acd5 commit ab2e325
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.enhanced
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ USER docsworker-xlarge
WORKDIR ${WORK_DIRECTORY}

# get shared.mk
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/DOP-4097-mk/makefiles/shared.mk -o shared.mk
RUN curl https://raw.githubusercontent.com/mongodb/meta/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 \
Expand Down
2 changes: 1 addition & 1 deletion src/job/stagingJobHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class StagingJobHandler extends JobHandler {
prepStageSpecificNextGenCommands(): void {
if (this.currJob.buildCommands) {
// TODO: Remove no-caching after done testing
this.currJob.buildCommands[this.currJob.buildCommands.length - 1] = 'make next-gen-parse NO_CACHING=--no-caching';
this.currJob.buildCommands[this.currJob.buildCommands.length - 1] = 'make next-gen-parse';
this.currJob.buildCommands.push(
`make persistence-module GH_USER=${this.currJob.payload.repoOwner} JOB_ID=${this.currJob._id}`
);
Expand Down

0 comments on commit ab2e325

Please sign in to comment.