Skip to content

Commit

Permalink
ps
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Nov 11, 2024
1 parent a04b243 commit f203743
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,16 @@ jobs:
- name: Setup V
run: ~/v/v symlink
- run: ls ~/.vmodules/vibe/curl/libcurl/bin
- run: |
$env:PATH += ";C:%HOMEPATH%\.vmodules\vibe\curl\libcurl\bin"
[System.Environment]::GetEnvironmentVariable("PATH", [System.EnvironmentVariableTarget]::Machine)
- name: Run tests
shell: cmd
# $env:PATH += ";C:\$HOME\.vmodules\vibe\curl\libcurl\bin"
# echo $HOME
# [System.Environment]::GetEnvironmentVariable("PATH", [System.EnvironmentVariableTarget]::Machine)
# v -stats test vibe
# set PATH=%PATH%;C:%HOMEPATH%\.vmodules\vibe\curl\libcurl\bin
# echo %PATH%
run: |
[System.Environment]::GetEnvironmentVariable("PATH", [System.EnvironmentVariableTarget]::Machine)
cd ~/.vmodules
set PATH=%PATH%;C:%HOMEPATH%\.vmodules\vibe\curl\libcurl\bin
echo %PATH%
v -stats test vibe\src\_tests_get_test.v
v -stats test vibe/src/_tests_get_test.v

0 comments on commit f203743

Please sign in to comment.