Skip to content

Commit 1319626

Browse files
aimichellecopybaranaut
authored andcommitted
Fix docstring update in Vizier build
Summary: D11196 removed the shellscript that we were originally using to generate the docs. this led to this part in the building failing, since the target no longer existed. Test Plan: Created an rc, verified the build passes and docs are updated Reviewers: philkuz, vihang, zasgar Reviewed By: vihang Signed-off-by: Michelle Nguyen <michellenguyen@pixielabs.ai> Differential Revision: https://phab.corp.pixielabs.ai/D11752 GitOrigin-RevId: 3cc2661
1 parent c66219a commit 1319626

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ K8S_TESTING_CLUSTER = 'https://cloud-testing.internal.corp.pixielabs.ai'
9595
K8S_TESTING_CREDS = 'pixie-prod-testing-cluster'
9696

9797
// PXL Docs variables.
98-
PXL_DOCS_BINARY = '//src/carnot/docstring:docstring_integration'
98+
PXL_DOCS_BINARY = '//src/carnot/docstring:docstring'
9999
PXL_DOCS_FILE = 'pxl-docs.json'
100100
PXL_DOCS_BUCKET = 'pl-docs'
101101
PXL_DOCS_GCS_PATH = "gs://${PXL_DOCS_BUCKET}/${PXL_DOCS_FILE}"
@@ -1236,7 +1236,7 @@ def updatePxlDocs() {
12361236
WithSourceCodeK8s {
12371237
container('pxbuild') {
12381238
def pxlDocsOut = "/tmp/${PXL_DOCS_FILE}"
1239-
sh "bazel run ${PXL_DOCS_BINARY} ${pxlDocsOut}"
1239+
sh "bazel run ${PXL_DOCS_BINARY} -- --output_json ${pxlDocsOut}"
12401240
sh "gsutil cp ${pxlDocsOut} ${PXL_DOCS_GCS_PATH}"
12411241
}
12421242
}

0 commit comments

Comments
 (0)