-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.6 KB
/
e2e_test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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]
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: add vfox-erlang 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'
run: |
vfox install [email protected]
vfox use [email protected]
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
- name: install Etcd by vfox-etcd plugin (Darwin)
if: runner.os == 'MacOS'
run: |
vfox install [email protected]
vfox use [email protected]
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="