From 5621fb10628a5cc35a7ccfb3def8ff2667f41b59 Mon Sep 17 00:00:00 2001 From: eberrigan Date: Wed, 22 May 2024 12:17:09 -0700 Subject: [PATCH] `use-only-tar-bz2: true` makes environment unsolvable, change it back --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index effc695a7..c5e4443a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,14 @@ jobs: environment-file: environment_build.yml activate-environment: sleap_ci conda-solver: "libmamba" - use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly! + # `use-only-tar-bz2: true` is breaking the build across all platforms. The environment is not able to resolve. Turned off for now. + # Error message: + # """... + # File "/home/runner/miniconda3/envs/sleap_ci/lib/python3.7/site-packages/conda_build/environ.py", line 801, in get_install_actions + # raise DependencyNeedsBuildingError(exc, subdir=subdir) + # conda_build.exceptions.DependencyNeedsBuildingError: Unsatisfiable dependencies for platform linux-64: {'conda-forge::ndx-pose'} + # """" + # use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly! - name: Print environment info shell: bash -l {0}