@@ -8,6 +8,9 @@ name: Release SDXL and FLUX Shortfin Serving Tests
88
99on :
1010 workflow_dispatch :
11+ push :
12+ branches :
13+ - branch-name
1114 schedule :
1215 # Weekdays at 11:00 AM UTC = 03:00 AM PST / 04:00 AM PDT
1316 - cron : " 0 9 * * *"
3841 shell : bash
3942 env :
4043 VENV_DIR : ${{ github.workspace }}/.venv
41- HF_HOME : " /amdshark-cache /data/huggingface"
44+ HF_HOME : " /amdshark-dev /data/huggingface"
4245 HF_TOKEN : ${{ secrets.HF_FLUX_TOKEN }}
4346 steps :
4447 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -56,15 +59,17 @@ jobs:
5659 - name : Install pip deps
5760 run : bash scripts/setenv.sh --nightly
5861
59- - name : Run SDXL (precompiled )
62+ - name : Run SDXL (export )
6063 run : |
64+ mkdir -p output_artifacts/sdxl
6165 bash scripts/run_sdxl_flux.sh \
6266 --model sdxl \
63- --build_preference precompiled 2>&1 | tee output_artifacts/sdxl/sdxl_precompile.log
67+ --build_preference export --force-update 2>&1 | tee output_artifacts/sdxl/sdxl_precompile.log
6468
6569 - name : Run Flux-Dev (precompiled)
6670 if : always()
6771 run : |
72+ mkdir -p output_artifacts/flux_dev
6873 bash scripts/run_sdxl_flux.sh \
6974 --model flux_dev \
7075 --build_preference precompiled \
7378 - name : Run Flux-Dev (compile)
7479 if : always()
7580 run : |
81+ mkdir -p output_artifacts/flux_dev
7682 bash scripts/run_sdxl_flux.sh \
7783 --model flux_dev \
7884 --build_preference compile \
8187 - name : Run Flux-Schnell (precompiled)
8288 if : always()
8389 run : |
90+ mkdir -p output_artifacts/flux_schnell
8491 bash scripts/run_sdxl_flux.sh \
8592 --model flux_schnell \
8693 --build_preference precompiled \
8996 - name : Run Flux-Schnell (compile)
9097 if : always()
9198 run : |
99+ mkdir -p output_artifacts/flux_schnell
92100 bash scripts/run_sdxl_flux.sh \
93101 --model flux_schnell \
94102 --build_preference compile \
0 commit comments