ci: try to fix tests #361
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: | |
| 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-2019] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install scoop (Windows) | |
| if: runner.os == 'Windows' | |
| uses: MinoruSekine/setup-scoop@v3 | |
| - name: install vfox (Windows) | |
| if: runner.os == 'Windows' | |
| run: | | |
| scoop install vfox | |
| - 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 erlang@25.3.2.12 | |
| vfox activate pwsh | Out-File -FilePath vfox_env.ps1 | |
| - name: test installation | |
| if: runner.os == 'Windows' | |
| run: | | |
| Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process -Force | |
| cat vfox_env.ps1 | |
| & vfox_env.ps1 | |
| echo $env:__VFOX_SHELL | |
| echo $env:__VFOX_CURTMPPATH | |
| cat $PROFILE | |
| echo "===============PATH===============" | |
| echo $env:PATH | |
| echo "===============PATH===============" | |
| vfox use -g erlang@25.3.2.12 | |
| & 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 |