Skip to content

Commit

Permalink
Inspect conda path var
Browse files Browse the repository at this point in the history
  • Loading branch information
florianesser-tng committed Nov 19, 2024
1 parent 772fbf3 commit b917d96
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,26 @@ jobs:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: setup miniforge
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
python-version: "3.11"
activate-environment: 'cp311_libuv'

- name: Install libuv dependency
run: |
echo "LIBUV_PATH=$(echo mockLibuvPath)" >> $env:GITHUB_ENV
conda install -y libuv
conda env list
conda env list | findstr libuv
ls C:\Users\runneradmin\miniconda3\envs\cp311_libuv
echo "LIBUV_PATH=$(conda env list | findstr libuv)" >> $env:GITHUB_ENV
- name: test
run: |
echo "$env:LIBUV_PATH"
echo $env:LIBUV_PATH
echo "${{ env.LIBUV_PATH }}"
echo ${{ env.LIBUV_PATH }}
dir "${{ env.LIBUV_PATH }}" -recurse -depth 2
dir "${{ env.LIBUV_PATH }}"\Lib -recurse -depth 2

0 comments on commit b917d96

Please sign in to comment.