chore: e2e vfox activate #16
This file contains 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: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
e2e_tests: | |
strategy: | |
matrix: | |
# ref: https://github.com/actions/runner-images | |
os: [ubuntu-20.04, macos-13, windows-2022] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install vfox (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
echo "deb [trusted=yes] https://apt.fury.io/versionfox/ /" | sudo tee /etc/apt/sources.list.d/versionfox.list | |
sudo apt-get update | |
sudo apt-get install vfox | |
echo 'eval "$(vfox activate bash)"' >> ~/.bashrc | |
- name: install vfox (MacOS) | |
if: runner.os == 'MacOS' | |
run: | | |
brew tap version-fox/tap | |
brew install vfox | |
echo 'eval "$(vfox activate bash)"' >> ~/.bashrc | |
echo 'eval "$(vfox activate zsh)"' >> ~/.zshrc | |
- 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-etcd plugin | |
run: | | |
vfox add --source https://github.com/yeshan333/vfox-etcd/archive/refs/heads/main.zip etcd | |
- name: install Etcd by vfox-etcd plugin (Linux) | |
if: runner.os == 'Linux' | |
shell: bash -leo pipefail {0} | |
run: | | |
vfox install etcd@3.5.12 | |
eval "$(vfox activate bash)" | |
vfox use -g etcd@3.5.12 | |
echo "===============PATH===============" | |
echo $PATH | |
echo "===============PATH===============" | |
- name: install Etcd by vfox-etcd plugin (Darwin) | |
if: runner.os == 'MacOS' | |
shell: zsh | |
run: | | |
vfox install etcd@3.5.12 | |
eval "$(vfox activate zsh)" | |
vfox use -g etcd@3.5.12 | |
echo "===============PATH===============" | |
echo $PATH | |
echo "===============PATH===============" | |
- name: install Etcd by vfox-etcd plugin (Windows) | |
if: runner.os == 'Windows' | |
shell: pwsh | |
run: | | |
vfox install etcd@3.5.12 | |
eval "$(vfox activate pwsh)" | |
vfox use -g etcd@3.5.12 | |
echo "===============PATH===============" | |
echo $env:PATH | |
echo "===============PATH===============" |