We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 824fb6d commit 3445a93Copy full SHA for 3445a93
1 file changed
.github/workflows/e2e_test_windows.yaml
@@ -13,7 +13,7 @@ jobs:
13
strategy:
14
matrix:
15
# ref: https://github.com/actions/runner-images
16
- os: [windows-2019, windows-2022]
+ os: [windows-2019]
17
runs-on: ${{ matrix.os }}
18
steps:
19
- uses: actions/checkout@v4
@@ -37,11 +37,12 @@ jobs:
37
run: |
38
vfox install erlang@25.3.2.12
39
if (-not (Test-Path -Path $PROFILE)) { New-Item -Type File -Path $PROFILE -Force }; Add-Content -Path $PROFILE -Value 'Invoke-Expression "$(vfox activate pwsh)"'
40
+ cat $PROFILE
41
- name: test installation
42
if: runner.os == 'Windows'
43
44
Invoke-Expression "$(vfox activate pwsh)"
- vfox use erlang@25.3.2.12
45
+ vfox use -g erlang@25.3.2.12
46
echo "===============PATH==============="
47
echo $env:PATH
48
0 commit comments