From 6fbeea7e3a847532bad76f2671be013256f9940c Mon Sep 17 00:00:00 2001 From: Michael-J-Ward Date: Thu, 2 May 2024 21:39:09 -0500 Subject: [PATCH] ci: reduce concurrency to 1 globally for conda The builds are failing for `aarch64`, and one log message hints that concurrent builds are messing with the same cache. Ref: https://github.com/apache/datafusion-python/issues/659 --- .github/workflows/conda.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index f8474565d..d48bbe550 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -16,7 +16,9 @@ on: # When this workflow is queued, automatically cancel any previous running # or pending jobs from the same branch concurrency: - group: conda-${{ github.head_ref }} + # temporarily making this a global lock to debug conda nightlies build + # group: conda-${{ github.head_ref }} + group: conda cancel-in-progress: true # Required shell entrypoint to have properly activated conda environments