Skip to content

Nightly Build

Nightly Build #358

Re-run triggered January 6, 2025 17:49
Status Failure
Total duration 10m 8s
Artifacts 13

nightly_build.yml

on: schedule
create-nightly-tag
1m 1s
create-nightly-tag
Matrix: Run Backend Unit Tests / build
Matrix: Run Backend Unit Tests / integration-tests
Matrix: Run Backend Unit Tests / test-cli
Run Frontend Tests  /  Determine Test Suites and Shard Distribution
47s
Run Frontend Tests / Determine Test Suites and Shard Distribution
Matrix: Run Frontend Tests / setup-and-test
Run Frontend Tests  /  merge-reports
24s
Run Frontend Tests / merge-reports
Run Nightly Langflow Build  /  Release Langflow Nightly Base
Run Nightly Langflow Build / Release Langflow Nightly Base
Run Nightly Langflow Build  /  Release Langflow Nightly Main
Run Nightly Langflow Build / Release Langflow Nightly Main
Run Nightly Langflow Build  /  ...  /  Get Version
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow Base / Get Version
Run Nightly Langflow Build  /  ...  /  Get Version
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow / Get Version
Run Nightly Langflow Build  /  ...  /  Get Version
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow with Entrypoint / Get Version
Run Nightly Langflow Build  /  ...  /  setup
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow Base / setup
Run Nightly Langflow Build  /  ...  /  setup
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow / setup
Run Nightly Langflow Build  /  ...  /  setup
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow with Entrypoint / setup
Run Nightly Langflow Build  /  ...  /  build
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow Base / build
Run Nightly Langflow Build  /  ...  /  build
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow / build
Run Nightly Langflow Build  /  ...  /  build
Run Nightly Langflow Build / Call Docker Build Workflow for Langflow with Entrypoint / build
Matrix: Run Nightly Langflow Build / Call Docker Build Workflow for Langflow Base / build_components
Waiting for pending jobs
Matrix: Run Nightly Langflow Build / Call Docker Build Workflow for Langflow Base / Restart HuggingFace Spaces
Waiting for pending jobs
Matrix: Run Nightly Langflow Build / Call Docker Build Workflow for Langflow / build_components
Waiting for pending jobs
Matrix: Run Nightly Langflow Build / Call Docker Build Workflow for Langflow / Restart HuggingFace Spaces
Waiting for pending jobs
Matrix: Run Nightly Langflow Build / Call Docker Build Workflow for Langflow with Entrypoint / build_components
Waiting for pending jobs
Matrix: Run Nightly Langflow Build / Call Docker Build Workflow for Langflow with Entrypoint / Restart HuggingFace Spaces
Waiting for pending jobs
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 38 warnings
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 5: src/backend/tests/src/backend/tests/base.py#L128
TestChatOutput.test_component_versions[1.0.17] AssertionError: Failed to execute component TestChatOutput for version 1.0.17: Module: outputs File: ChatOutput Error: All of session_id, sender, and sender_name must be provided. Component Code: from langflow.base.io.chat import ChatComponent from langflow.inputs import BoolInput from langflow.io import DropdownInput, MessageTextInput, Output from langflow.memory import store_message from langflow.schema.message import Message from langflow.utils.constants import MESSAGE_SENDER_NAME_AI, MESSAGE_SENDER_USER, MESSAGE_SENDER_AI class ChatOutput(ChatComponent): display_name = "Chat Output" description = "Display a chat message in the Playground." icon = "ChatOutput" name = "ChatOutput" inputs = [ MessageTextInput( name="input_value", display_name="Text", info="Message to be passed as output.", ), BoolInput( name="should_store_message", display_name="Store Messages", info="Store the message in the history.", value=True, advanced=True, ), DropdownInput( name="sender", display_name="Sender Type", options=[MESSAGE_SENDER_AI, MESSAGE_SENDER_USER], value=MESSAGE_SENDER_AI, advanced=True, info="Type of sender.", ), MessageTextInput( name="sender_name", display_name="Sender Name", info="Name of the sender.", value=MESSAGE_SENDER_NAME_AI, advanced=True, ), MessageTextInput( name="session_id", display_name="Session ID", info="The session ID of the chat. If empty, the current session ID parameter will be used.", advanced=True, ), MessageTextInput( name="data_template", display_name="Data Template", value="{text}", advanced=True, info="Template to convert Data to Text. If left empty, it will be dynamically set to the Data's text key.", ), ] outputs = [ Output(display_name="Message", name="message", method="message_response"), ] def message_response(self) -> Message: message = Message( text=self.input_value, sender=self.sender, sender_name=self.sender_name, session_id=self.session_id, ) if ( self.session_id and isinstance(message, Message) and isinstance(message.text, str) and self.should_store_message ): store_message( message, flow_id=self.graph.flow_id, ) self.message.value = message self.status = message return message
Run Backend Unit Tests / Unit Tests - Python 3.12 - Group 5: src/backend/tests/src/backend/tests/unit/components/prompts/test_prompt_component.py#L37
TestPromptComponent.test_prompt_component_latest blockbuster.blockbuster.BlockingError: Blocking call to <method 'acquire' of '_thread.lock' objects>
Run Frontend Tests / Playwright Tests - Shard 1/10
Final attempt failed. Child_process exited with error code 1
create-nightly-tag
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Integration Tests - Python 3.10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Integration Tests - Python 3.11
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Integration Tests - Python 3.12
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Determine Test Suites and Shard Distribution
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Determine Test Suites and Shard Distribution
'before' field is missing in event payload - changes will be detected from last commit
Run Backend Unit Tests / Test CLI - Python 3.10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Test CLI - Python 3.11
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Test CLI - Python 3.12
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 2
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 1
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 3
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.11 - Group 2
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 5
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 5
Attempt 1 failed. Reason: Child_process exited with error code 2
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 4
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.11 - Group 1
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.11 - Group 3
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.12 - Group 2
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.11 - Group 5
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.12 - Group 4
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.11 - Group 4
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.12 - Group 1
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.12 - Group 5
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Backend Unit Tests / Unit Tests - Python 3.12 - Group 5
Attempt 1 failed. Reason: Child_process exited with error code 2
Run Backend Unit Tests / Unit Tests - Python 3.12 - Group 3
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 3/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 2/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 4/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 6/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 5/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 10/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 8/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 7/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 9/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 1/10
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Run Frontend Tests / Playwright Tests - Shard 1/10
Attempt 1 failed. Reason: Child_process exited with error code 1
Run Frontend Tests / merge-reports
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636

Artifacts

Produced during runtime
Name Size
blob-report-1 Expired
200 MB
html-report--attempt-2 Expired
200 MB