Skip to content

Commit

Permalink
debug var usage on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
florianesser-tng committed Nov 19, 2024
1 parent 95819e2 commit 772fbf3
Showing 1 changed file with 4 additions and 33 deletions.
37 changes: 4 additions & 33 deletions .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,14 @@ 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: |
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)" >> %GITHUB_ENV%
- name: Cache npm modules
uses: actions/cache@v3
id: npm-cache
with:
path: ~/.npm
key: ${{ runner.os }}-npm
echo "LIBUV_PATH=$(echo mockLibuvPath)" >> $env:GITHUB_ENV
- name: Install Node.js and npm
uses: actions/setup-node@v3
with:
node-version: '20'

- name: setup npm project
run: npm install
working-directory: "WebUI"
- name: test
run: |
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
echo ${{ env.LIBUV_PATH }}

0 comments on commit 772fbf3

Please sign in to comment.