E2E tests on Windows #686
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E tests on Windows | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| # Runs at 12am UTC | |
| - cron: "0 0 * * *" | |
| jobs: | |
| e2e_tests: | |
| strategy: | |
| matrix: | |
| # ref: https://github.com/actions/runner-images | |
| os: [windows-2022] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '^1.24.2' # The Go version to download (if necessary) and use. | |
| - name: build vfox (Windows) | |
| run: | | |
| git clone https://github.com/version-fox/vfox.git | |
| cd vfox | |
| go build -o vfox.exe | |
| echo "$pwd" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
| ./vfox.exe -version | |
| - name: add vfox-erlang plugin (Windows) | |
| if: runner.os == 'Windows' | |
| run: | | |
| vfox add --source https://github.com/version-fox/vfox-erlang/archive/$env:GITHUB_REF.zip erlang | |
| - name: install Erlang/OTP by vfox-erlang plugin (Windows) | |
| if: runner.os == 'Windows' | |
| run: | | |
| vfox install [email protected] | |
| Invoke-Expression "$(vfox activate pwsh)" | |
| vfox use -g [email protected] | |
| Invoke-Expression "$(vfox activate pwsh)" | |
| echo "===============PATH===============" | |
| echo $env:PATH | |
| echo "===============PATH===============" | |
| & erl.exe -eval 'erlang:display({otp_release, erlang:system_info(otp_release)}), halt().' -noshell | |
| & erl.exe -eval 'erlang:display(shell_docs:get_doc(lists)), halt().' -noshell |