diff --git a/.github/workflows/diffusion-ci-gt-gen.yml b/.github/workflows/diffusion-ci-gt-gen.yml index 58a0b0fba..036f6595a 100644 --- a/.github/workflows/diffusion-ci-gt-gen.yml +++ b/.github/workflows/diffusion-ci-gt-gen.yml @@ -19,7 +19,7 @@ on: default: '' type: string publish_target_dir: - description: 'Remote target directory in sglang-ci-data. Leave empty to use diffusion-ci/consistency_gt/sglang_generated.' + description: 'Remote target directory in sgl-project/ci-data. Leave empty to use diffusion-ci/consistency_gt/sglang_generated.' required: false default: '' type: string @@ -136,7 +136,7 @@ jobs: path: python/${{ env.OUTPUT_NAME }} retention-days: 7 - - name: Publish GT images to sglang-bot/sglang-ci-data + - name: Publish GT images to sgl-project/ci-data env: GITHUB_TOKEN: ${{ secrets.GH_PAT_FOR_NIGHTLY_CI_DATA }} run: | @@ -202,7 +202,7 @@ jobs: path: python/${{ env.OUTPUT_NAME }} retention-days: 7 - - name: Publish GT images to sglang-bot/sglang-ci-data + - name: Publish GT images to sgl-project/ci-data env: GITHUB_TOKEN: ${{ secrets.GH_PAT_FOR_NIGHTLY_CI_DATA }} run: | @@ -268,7 +268,7 @@ jobs: path: python/${{ env.OUTPUT_NAME }} retention-days: 7 - - name: Publish GT images to sglang-bot/sglang-ci-data + - name: Publish GT images to sgl-project/ci-data env: GITHUB_TOKEN: ${{ secrets.GH_PAT_FOR_NIGHTLY_CI_DATA }} run: | diff --git a/python/sglang/multimodal_gen/test/server/test_server_common.py b/python/sglang/multimodal_gen/test/server/test_server_common.py index ae941b51d..d9671276e 100644 --- a/python/sglang/multimodal_gen/test/server/test_server_common.py +++ b/python/sglang/multimodal_gen/test/server/test_server_common.py @@ -561,13 +561,13 @@ Consider updating perf_baselines.json with the snippets below: --- MISSING GROUND TRUTH DETECTED --- GT image(s) not found for '{case.id}'. -Add the expected file(s) to sglang-ci-data in diffusion-ci/consistency_gt/sglang_generated/ with naming (n=num_gpus). +Add the expected file(s) to sgl-project/ci-data in diffusion-ci/consistency_gt/sglang_generated/ with naming (n=num_gpus). Image: {case.id}_{{n}}gpu. (ext from output_format: png, jpg, webp) Video: {case.id}_{{n}}gpu_frame_0.png, {case.id}_{{n}}gpu_frame_mid.png, {case.id}_{{n}}gpu_frame_last.png For this case, expected file(s): {names} -Repository: https://github.com/sglang-bot/sglang-ci-data (path: diffusion-ci/consistency_gt/sglang_generated/) +Repository: https://github.com/sgl-project/ci-data (path: diffusion-ci/consistency_gt/sglang_generated/) (Optional) Per-case override in consistency_threshold.json: "cases": {{ diff --git a/scripts/ci/utils/diffusion/publish_diffusion_gt.py b/scripts/ci/utils/diffusion/publish_diffusion_gt.py index 7dae95d6f..9912a2c19 100644 --- a/scripts/ci/utils/diffusion/publish_diffusion_gt.py +++ b/scripts/ci/utils/diffusion/publish_diffusion_gt.py @@ -1,5 +1,5 @@ """ -Publish diffusion CI ground-truth images to sglang-bot/sglang-ci-data +Publish diffusion CI ground-truth images to sgl-project/ci-data via the GitHub API (same pattern as publish_traces.py). """ @@ -41,8 +41,8 @@ else: verify_token_permissions, ) -REPO_OWNER = "sglang-bot" -REPO_NAME = "sglang-ci-data" +REPO_OWNER = "sgl-project" +REPO_NAME = "ci-data" BRANCH = "main" DEFAULT_TARGET_DIR = "diffusion-ci/consistency_gt/sglang_generated"