From 68be5a7658951b2a0e21a692c8ff212e24ede359 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 29 Feb 2024 10:16:57 -0800 Subject: [PATCH] infra: skip ibm api docs (#18335) --- .github/workflows/api_doc_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api_doc_build.yml b/.github/workflows/api_doc_build.yml index d8b19298704..7b6c4306407 100644 --- a/.github/workflows/api_doc_build.yml +++ b/.github/workflows/api_doc_build.yml @@ -51,8 +51,8 @@ jobs: run: | poetry run python -m pip install --upgrade --no-cache-dir pip setuptools poetry run python -m pip install --upgrade --no-cache-dir sphinx readthedocs-sphinx-ext - # skip airbyte due to pandas dependency issue - poetry run python -m pip install $(ls ./libs/partners | grep -v "airbyte" | xargs -I {} echo "./libs/partners/{}") + # skip airbyte and ibm due to pandas dependency issue + poetry run python -m pip install $(ls ./libs/partners | grep -vE "airbyte|ibm" | xargs -I {} echo "./libs/partners/{}") poetry run python -m pip install --exists-action=w --no-cache-dir -r docs/api_reference/requirements.txt - name: Build docs