diff --git a/.github/workflows/manually_build_for_testing.yml b/.github/workflows/manually_build_for_testing.yml index a25c47e9..f9683c92 100644 --- a/.github/workflows/manually_build_for_testing.yml +++ b/.github/workflows/manually_build_for_testing.yml @@ -14,8 +14,8 @@ on: type: choice options: - all - - bigdl-llm-finetune-cpu - - bigdl-llm-finetune-xpu + - bigdl-llm-finetune-lora-cpu + - bigdl-llm-finetune-qlora-xpu - bigdl-llm-xpu - bigdl-llm-cpu - bigdl-llm-serving-xpu @@ -57,8 +57,8 @@ permissions: packages: write jobs: - bigdl-llm-finetune-cpu: - if: ${{ github.event.inputs.artifact == 'bigdl-llm-finetune-cpu' || github.event.inputs.artifact == 'all' }} + bigdl-llm-finetune-lora-cpu: + if: ${{ github.event.inputs.artifact == 'bigdl-llm-finetune-lora-cpu' || github.event.inputs.artifact == 'all' }} runs-on: [self-hosted, Shire] steps: @@ -68,12 +68,12 @@ jobs: - name: docker login run: | docker login -u ${DOCKERHUB_USERNAME} -p ${DOCKERHUB_PASSWORD} - - name: bigdl-llm-finetune-cpu + - name: bigdl-llm-finetune-lora-cpu run: | echo "##############################################################" - echo "####### bigdl-llm-finetune-cpu ########" + echo "####### bigdl-llm-finetune-lora-cpu ########" echo "##############################################################" - export image=intelanalytics/bigdl-llm-finetune-cpu + export image=intelanalytics/bigdl-llm-finetune-lora-cpu cd docker/llm/finetune/lora/cpu/docker sudo docker build \ --no-cache=true \ @@ -86,8 +86,8 @@ jobs: sudo docker push 10.239.45.10/arda/${image}:${TAG} sudo docker rmi -f ${image}:${TAG} 10.239.45.10/arda/${image}:${TAG} - bigdl-llm-finetune-xpu: - if: ${{ github.event.inputs.artifact == 'bigdl-llm-finetune-xpu' || github.event.inputs.artifact == 'all' }} + bigdl-llm-finetune-qlora-xpu: + if: ${{ github.event.inputs.artifact == 'bigdl-llm-finetune-qlora-xpu' || github.event.inputs.artifact == 'all' }} runs-on: [self-hosted, Shire] steps: @@ -97,12 +97,12 @@ jobs: - name: docker login run: | docker login -u ${DOCKERHUB_USERNAME} -p ${DOCKERHUB_PASSWORD} - - name: bigdl-llm-finetune-xpu + - name: bigdl-llm-finetune-qlora-xpu run: | echo "##############################################################" - echo "####### bigdl-llm-finetune-xpu ########" + echo "####### bigdl-llm-finetune-qlora-xpu ########" echo "##############################################################" - export image=intelanalytics/bigdl-llm-finetune-xpu + export image=intelanalytics/bigdl-llm-finetune-qlora-xpu cd docker/llm/finetune/qlora/xpu/docker sudo docker build \ --no-cache=true \