From e73c62636f11fdcf5e9d9f764f7007e6f5b22b8f Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 26 Jun 2025 14:27:03 -0300 Subject: [PATCH] chore(workflow): comment out Docker build step for langflow-all in nightly release (#8727) chore: Comment out Docker build workflow for langflow-all due to runner limitations * Temporarily disabled the `call_docker_build_main_all` job in the nightly release workflow. * Added a TODO note to revisit this when the runner can accommodate builds with large dependencies like PyTorch. --- .github/workflows/release_nightly.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release_nightly.yml b/.github/workflows/release_nightly.yml index 80ff1ac3a..a27905de1 100644 --- a/.github/workflows/release_nightly.yml +++ b/.github/workflows/release_nightly.yml @@ -235,15 +235,16 @@ jobs: main_version: ${{ inputs.nightly_tag_main }} secrets: inherit - call_docker_build_main_all: - name: Call Docker Build Workflow for langflow-all - if: always() && ${{ inputs.build_docker_main == 'true' }} - needs: [release-nightly-main] - uses: ./.github/workflows/docker-build.yml - with: - release_type: nightly-main-all - main_version: ${{ inputs.nightly_tag_main }} - secrets: inherit + # TODO: Uncomment this when our runner can fit the builds that contain pytorch (and other large dependencies) + # call_docker_build_main_all: + # name: Call Docker Build Workflow for langflow-all + # if: always() && ${{ inputs.build_docker_main == 'true' }} + # needs: [release-nightly-main] + # uses: ./.github/workflows/docker-build.yml + # with: + # release_type: nightly-main-all + # main_version: ${{ inputs.nightly_tag_main }} + # secrets: inherit call_docker_build_main_ep: name: Call Docker Build Workflow for Langflow with Entrypoint