Skip to content

feat: support build etcd with failpoint #28

feat: support build etcd with failpoint

feat: support build etcd with failpoint #28

Workflow file for this run

name: E2E tests
on:
push:
branches: [main]
pull_request:
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
- name: install vfox (MacOS)
if: runner.os == 'MacOS'
run: |
brew tap version-fox/tap
brew install vfox
- 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
if: runner.os == 'Windows'
run: |
vfox add --source https://github.com/version-fox/vfox-etcd/archive/$env:GITHUB_REF.zip etcd
- name: add vfox-etcd plugin
if: runner.os != 'Windows'
run: |
vfox add --source https://github.com/version-fox/vfox-etcd/archive/${GITHUB_REF}.zip etcd
- name: install etcd by vfox-etcd plugin (Linux)
if: runner.os == 'Linux'
run: |
vfox install [email protected]
vfox use -g [email protected]
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
etcd -version
- name: install etcd by vfox-etcd plugin (Darwin)
if: runner.os == 'MacOS'
run: |
vfox install [email protected]
vfox use -g [email protected]
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
etcd -version
- name: install etcd by vfox-etcd plugin (Windows)
if: runner.os == 'Windows'
run: |
vfox install [email protected]
vfox use -g [email protected]
Invoke-Expression "$(vfox activate pwsh)"
echo "===============PATH==============="
echo $env:PATH
echo "===============PATH==============="
etcd -version
- name: install etcd with failpoint by vfox-etcd plugin (Linux)
if: runner.os == 'Linux'
run: |
vfox install [email protected]
vfox use -g [email protected]
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
etcd -version
export BUILD_WITH_FAILPOINT=yes
export GOFAIL_HTTP="127.0.0.1:22381"
nohup etcd &>/dev/null &
curl http://127.0.0.1:22381