From 0b0ffc3f07d70d3ab41e55bcfd69753124cf1bc9 Mon Sep 17 00:00:00 2001 From: Keren Zhou Date: Sun, 1 Dec 2024 13:46:26 -0500 Subject: [PATCH] [BUILD] Skip installing test related python packages (#5294) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/triton-lang/triton/pull/5292 failed because of macOS build. Since we don’t run any tests on macOS anyway, it’s fine to simply skip them. --- .github/workflows/integration-tests.yml | 2 +- .github/workflows/integration-tests.yml.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index ca7149656149..9ae78a64b627 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -581,7 +581,7 @@ jobs: echo "PATH is '$PATH'" cd python ccache --zero-stats - python3 -m pip install -v --no-build-isolation .[tests] + python3 -m pip install -v --no-build-isolation . - name: CCache Stats run: ccache --print-stats - name: Inspect cache directories diff --git a/.github/workflows/integration-tests.yml.in b/.github/workflows/integration-tests.yml.in index 64ef9b9d964c..6b58be6571ad 100644 --- a/.github/workflows/integration-tests.yml.in +++ b/.github/workflows/integration-tests.yml.in @@ -493,7 +493,7 @@ jobs: echo "PATH is '$PATH'" cd python ccache --zero-stats - python3 -m pip install -v --no-build-isolation .[tests] + python3 -m pip install -v --no-build-isolation . - *print-ccache-stats - *inspect-cache-directories-step