From 6e1b9d22a8acdacb4b07360c12c9202dad32851c Mon Sep 17 00:00:00 2001 From: Congjian Wang Date: Thu, 26 Sep 2024 15:46:40 -0600 Subject: [PATCH] disable use-only-tar-bz2 --- .github/workflows/github-actions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 1854b94..e2ff92c 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -39,14 +39,14 @@ jobs: - run: ../raven/run_tests -j4 --plugins --re=SR2ML Test-SR2ML-Macos: - # runs-on: macos-latest - runs-on: macos-14 + runs-on: macos-latest + # runs-on: macos-14 steps: - uses: conda-incubator/setup-miniconda@v3 with: miniconda-version: "latest" channels: conda-forge, defaults - use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly! + use-only-tar-bz2: False # IMPORTANT: This needs to be set to True for caching to work properly! auto-update-conda: true auto-activate-base: true - run: echo " The job was automatically triggered by a ${{ github.event_name }} event."