From 87395fe6fe0be099a4bb5af6b6b318fff3147c6f Mon Sep 17 00:00:00 2001 From: mauwii Date: Sun, 16 Oct 2022 22:48:53 +0200 Subject: [PATCH] list conda packages after activating env also want to show how much faster it will run now with cached pkgs --- .github/workflows/test-invoke-conda.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-invoke-conda.yml b/.github/workflows/test-invoke-conda.yml index c0c7c95452..fb5a785a0b 100644 --- a/.github/workflows/test-invoke-conda.yml +++ b/.github/workflows/test-invoke-conda.yml @@ -96,6 +96,12 @@ jobs: activate-environment: ${{ env.CONDA_ENV_NAME }} environment-file: ${{ matrix.environment-file }} + - name: list conda packages + run: | + conda list \ + -n invokeai | \ + awk ' {print " - " $1 "==" $2;} ' + - name: Use Cached Huggingface and Torch models id: cache-hugginface-torch uses: actions/cache@v3