diff --git a/.github/workflows/test-invoke-conda.yml b/.github/workflows/test-invoke-conda.yml index e2643facfac..5ce25ab3f50 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: @@ -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: