From 20a24b98a463a7743d221f88d60f4afc8ae782aa Mon Sep 17 00:00:00 2001 From: Alex Mazzeo Date: Mon, 6 Oct 2025 14:23:24 -0700 Subject: [PATCH 1/2] Add googleapis-common-protos to fix tests in build-binaries workflow --- .github/workflows/build-binaries.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index b7e927573..0087c4ab4 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -4,7 +4,7 @@ on: branches: - main - "releases/*" - - fix-build-binaries + - fix-binary-testing jobs: # Compile the binaries and upload artifacts @@ -66,7 +66,7 @@ jobs: if [ "$RUNNER_OS" = "Windows" ]; then bindir=Scripts fi - ./.venv/$bindir/pip install 'protobuf>=3.20,<6' 'types-protobuf>=3.20,<6' 'typing-extensions>=4.2.0,<5' pytest pytest_asyncio grpcio 'nexus-rpc>=1.1.0' pydantic opentelemetry-api opentelemetry-sdk python-dateutil 'openai-agents>=0.2.3,<=0.2.9' + ./.venv/$bindir/pip install 'protobuf>=3.20,<6' 'types-protobuf>=3.20,<6' 'typing-extensions>=4.2.0,<5' pytest pytest_asyncio grpcio 'nexus-rpc>=1.1.0' pydantic opentelemetry-api opentelemetry-sdk python-dateutil 'openai-agents>=0.2.3,<=0.2.9' 'googleapis-common-protos==1.70.0' ./.venv/$bindir/pip install --no-index --find-links=../dist temporalio ./.venv/$bindir/python -m pytest -s -k test_workflow_hello From 04f2e73b14a5a7cd2a1018e56515552ee313f90c Mon Sep 17 00:00:00 2001 From: Alex Mazzeo Date: Mon, 6 Oct 2025 15:01:22 -0700 Subject: [PATCH 2/2] remove branch from running the build-binaries workflow --- .github/workflows/build-binaries.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 0087c4ab4..03e529be9 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -4,7 +4,6 @@ on: branches: - main - "releases/*" - - fix-binary-testing jobs: # Compile the binaries and upload artifacts