list conda packages after activating env

also want to show how much faster it will run now with cached pkgs
This commit is contained in:
mauwii 2022-10-16 22:48:53 +02:00
parent 15f876c66c
commit 87395fe6fe
No known key found for this signature in database
GPG Key ID: D923DB04ADB3F5AB

View File

@ -96,6 +96,12 @@ jobs:
activate-environment: ${{ env.CONDA_ENV_NAME }} activate-environment: ${{ env.CONDA_ENV_NAME }}
environment-file: ${{ matrix.environment-file }} 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 - name: Use Cached Huggingface and Torch models
id: cache-hugginface-torch id: cache-hugginface-torch
uses: actions/cache@v3 uses: actions/cache@v3