From bfa12545e874758572ee41d9b7b5eaeed40a0f7c Mon Sep 17 00:00:00 2001 From: Mike Henry <11765982+mikemhenry@users.noreply.github.com> Date: Tue, 19 Dec 2023 08:12:01 -0700 Subject: [PATCH 1/4] see what happens if we skip caching --- .github/workflows/installer.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/installer.yaml b/.github/workflows/installer.yaml index 439a0c18e..35605bcad 100644 --- a/.github/workflows/installer.yaml +++ b/.github/workflows/installer.yaml @@ -39,8 +39,6 @@ jobs: with: environment-file: false environment-name: constructor-env - cache-environment: true - cache-downloads: true create-args: >- python=3.10 jinja2 From 00da9ccddcab0cfb3c3b71f74e1c479011ca20eb Mon Sep 17 00:00:00 2001 From: Mike Henry <11765982+mikemhenry@users.noreply.github.com> Date: Tue, 19 Dec 2023 08:30:26 -0700 Subject: [PATCH 2/4] see if we can skip env.yaml --- .github/workflows/installer.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/installer.yaml b/.github/workflows/installer.yaml index 35605bcad..009e56497 100644 --- a/.github/workflows/installer.yaml +++ b/.github/workflows/installer.yaml @@ -37,8 +37,6 @@ jobs: - name: Install constructor environment with Micromamba uses: mamba-org/setup-micromamba@v1 with: - environment-file: false - environment-name: constructor-env create-args: >- python=3.10 jinja2 From d36aa823025f27a6c71d3a69388d31bda908d6c1 Mon Sep 17 00:00:00 2001 From: Mike Henry <11765982+mikemhenry@users.noreply.github.com> Date: Tue, 19 Dec 2023 08:37:16 -0700 Subject: [PATCH 3/4] fix issue with env creation --- .github/workflows/installer.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/installer.yaml b/.github/workflows/installer.yaml index 009e56497..2d4e4e813 100644 --- a/.github/workflows/installer.yaml +++ b/.github/workflows/installer.yaml @@ -37,6 +37,7 @@ jobs: - name: Install constructor environment with Micromamba uses: mamba-org/setup-micromamba@v1 with: + environment-name: installer-$${{ matrix.os }} create-args: >- python=3.10 jinja2 From 195bdf37bf68c48e9ea30ba18731e56ab817af70 Mon Sep 17 00:00:00 2001 From: Mike Henry <11765982+mikemhenry@users.noreply.github.com> Date: Tue, 19 Dec 2023 08:51:35 -0700 Subject: [PATCH 4/4] fix env name --- .github/workflows/installer.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/installer.yaml b/.github/workflows/installer.yaml index 2d4e4e813..6fe0f5cf4 100644 --- a/.github/workflows/installer.yaml +++ b/.github/workflows/installer.yaml @@ -37,7 +37,7 @@ jobs: - name: Install constructor environment with Micromamba uses: mamba-org/setup-micromamba@v1 with: - environment-name: installer-$${{ matrix.os }} + environment-name: installer create-args: >- python=3.10 jinja2