From e8655977497ad339e422dc673c8ec6ddde9936e3 Mon Sep 17 00:00:00 2001 From: mauwii Date: Fri, 28 Oct 2022 16:48:02 +0200 Subject: [PATCH 1/2] remove debug branch, set fail-fast to false to find out if only mac or ubuntu is broken (otherwise if one fails the otherone automatically cancels) --- .github/workflows/test-invoke-conda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-invoke-conda.yml b/.github/workflows/test-invoke-conda.yml index e2643facfac..7523c6164f7 100644 --- a/.github/workflows/test-invoke-conda.yml +++ b/.github/workflows/test-invoke-conda.yml @@ -4,7 +4,6 @@ on: branches: - 'main' - 'development' - - 'fix-gh-actions-fork' pull_request: branches: - 'main' @@ -13,6 +12,7 @@ on: jobs: os_matrix: strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-latest] include: From 1f269ec9fb044ca573057b2bfe5a11665b2fec5d Mon Sep 17 00:00:00 2001 From: mauwii Date: Fri, 28 Oct 2022 17:02:00 +0200 Subject: [PATCH 2/2] remove conda cache --- .github/workflows/test-invoke-conda.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/test-invoke-conda.yml b/.github/workflows/test-invoke-conda.yml index 7523c6164f7..5ce25ab3f50 100644 --- a/.github/workflows/test-invoke-conda.yml +++ b/.github/workflows/test-invoke-conda.yml @@ -71,24 +71,6 @@ jobs: [[ -r models/ldm/stable-diffusion-v1/model.ckpt ]] \ || curl -o models/ldm/stable-diffusion-v1/model.ckpt ${{ secrets.SD_V1_4_URL }} - - name: Use cached Conda Environment - uses: actions/cache@v3 - env: - cache-name: cache-conda-env-${{ env.CONDA_ENV_NAME }} - conda-env-file: ${{ matrix.environment-file }} - with: - path: ${{ env.CONDA }}/envs/${{ env.CONDA_ENV_NAME }} - key: env-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles(env.conda-env-file) }} - - - name: Use cached Conda Packages - uses: actions/cache@v3 - env: - cache-name: cache-conda-pkgs-${{ env.CONDA_ENV_NAME }} - conda-env-file: ${{ matrix.environment-file }} - with: - path: ${{ env.CONDA_PKGS_DIR }} - key: pkgs-${{ env.cache-name }}-${{ runner.os }}-${{ hashFiles(env.conda-env-file) }} - - name: Activate Conda Env uses: conda-incubator/setup-miniconda@v2 with: