Skip to content

Commit

Permalink
try falling back to hardcoded conda pkgs dir
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelPesce committed Nov 21, 2024
1 parent 1b9fe72 commit 10ffc9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ jobs:
activate-environment: watertap-ui-env
miniforge-version: latest


- name: print environment variables
run: printenv

- name: Set up debug logging
run: |
echo "ACTIONS_RUNNER_DEBUG=true" >> $GITHUB_ENV
Expand Down Expand Up @@ -142,6 +138,10 @@ jobs:
run: |
if [ -d "${CONDA_PKGS_DIR}" ]; then
mv "${CONDA_PKGS_DIR}" "${CONDA_PKGS_DIR}_do_not_cache"
else
# Try using hardcoded directory
CONDA_PKGS_DIR="C:\Users\runneradmin\conda_pkgs_dir\"
mv "${CONDA_PKGS_DIR}" "${CONDA_PKGS_DIR}_do_not_cache"
fi
pytest:
Expand Down

0 comments on commit 10ffc9e

Please sign in to comment.