Skip to content

Nightly Build

Nightly Build #343

Manually triggered December 26, 2024 22:28
Status Failure
Total duration 10m 0s
Artifacts 10

nightly_build.yml

on: workflow_dispatch
create-nightly-tag
42s
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
40s
Run Frontend Tests / Determine Test Suites and Shard Distribution
Matrix: Run Frontend Tests / setup-and-test
Run Frontend Tests  /  merge-reports
3s
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

9 errors and 36 warnings
Run Backend Unit Tests / Unit Tests - Python 3.11 - 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 Backend Unit Tests / Unit Tests - Python 3.11 - Group 5: src/backend/tests/src/backend/tests/unit/test_endpoints.py#L310
test_successful_run_with_output_type_text AssertionError: {"detail":"{\"message\":\"Error running graph: Error building Component Chat Output: \\n\\nBlocking call to <method 'acquire' of '_thread.lock' objects>\",\"traceback\":null,\"description\":null,\"code\":null,\"suggestion\":null}"} assert 500 == 200 + where 500 = <Response [500 Internal Server Error]>.status_code + and 200 = status.HTTP_200_OK
Run Backend Unit Tests / Unit Tests - Python 3.11 - Group 5
Final attempt failed. Child_process exited with error code 2
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 5
The job was canceled because "_3_11_5_5" failed.
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 5: src/backend/tests/src/backend/tests/unit/test_endpoints.py#L310
test_successful_run_with_output_type_text AssertionError: {"detail":"{\"message\":\"Error running graph: Error building Component Chat Output: \\n\\nBlocking call to <method 'acquire' of '_thread.lock' objects>\",\"traceback\":null,\"description\":null,\"code\":null,\"suggestion\":null}"} assert 500 == 200 + where 500 = <Response [500 Internal Server Error]>.status_code + and 200 = status.HTTP_200_OK
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 5
The operation was canceled.
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 4
The job was canceled because "_3_11_5_5" failed.
Run Backend Unit Tests / Unit Tests - Python 3.10 - Group 4: src/backend/tests/src/backend/tests/base.py#L128
TestChatInput.test_component_versions[1.0.17] AssertionError: Failed to execute component TestChatInput for version 1.0.17: Module: inputs File: ChatInput Error: Blocking call to <method 'acquire' of '_thread.lock' objects> Component Code: from langflow.base.data.utils import IMG_FILE_TYPES, TEXT_FILE_TYPES from langflow.base.io.chat import ChatComponent from langflow.inputs import BoolInput from langflow.io import DropdownInput, FileInput, MessageTextInput, MultilineInput, Output from langflow.memory import store_message from langflow.schema.message import Message from langflow.utils.constants import MESSAGE_SENDER_AI, MESSAGE_SENDER_USER, MESSAGE_SENDER_NAME_USER class ChatInput(ChatComponent): display_name = "Chat Input" description = "Get chat inputs from the Playground." icon = "ChatInput" name = "ChatInput" inputs = [ MultilineInput( name="input_value", display_name="Text", value="", info="Message to be passed as input.", ), 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_USER, info="Type of sender.", advanced=True, ), MessageTextInput( name="sender_name", display_name="Sender Name", info="Name of the sender.", value=MESSAGE_SENDER_NAME_USER, 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, ), FileInput( name="files", display_name="Files", file_types=TEXT_FILE_TYPES + IMG_FILE_TYPES, info="Files to be sent with the message.", advanced=True, is_list=True, ), ] 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, files=self.files, ) 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.10 - Group 4
The operation was canceled.
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 / 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 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.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.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.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 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 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 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 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 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 / 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 / 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 / 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 / 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.11 - Group 5
Attempt 1 failed. Reason: Child_process exited with error code 2
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
Attempt 1 failed. Reason: Child_process exited with error code 2
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 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 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 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 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 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 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 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 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 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 / 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
177 MB
blob-report-10 Expired
115 MB
blob-report-2 Expired
192 MB
blob-report-3 Expired
126 MB
blob-report-4 Expired
110 MB
blob-report-5 Expired
162 MB
blob-report-6 Expired
113 MB
blob-report-7 Expired
128 MB
blob-report-8 Expired
105 MB
blob-report-9 Expired
108 MB