Skip to content

Commit 1208c0d

Browse files
committed
ci: hard code vfox version, because of vfox hook shell bug in v0.6.6 version
1 parent e96cd6e commit 1208c0d

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/e2e_test_darwin.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
schedule:
99
# Runs at 12am UTC
10-
- cron: '0 0 * * *'
10+
- cron: "0 0 * * *"
1111

1212
jobs:
1313
e2e_tests:
@@ -18,16 +18,16 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- uses: actions/checkout@v4
21-
21+
2222
- name: install vfox (MacOS)
2323
if: runner.os == 'MacOS'
2424
run: |
2525
brew tap version-fox/tap
26-
brew install vfox
26+
brew install vfox@0.6.4
2727
28-
- name: add vfox-erlang plugin (Unix-like)
28+
- name: add vfox-erlang plugin (Unix-like)
2929
run: |
30-
vfox add --source https://github.com/version-fox/vfox-erlang/archive/${GITHUB_REF}.zip erlang
30+
vfox add --source https://github.com/version-fox/vfox-erlang/archive/${GITHUB_REF}.zip erlang
3131
3232
- name: install Erlang/OTP by vfox-erlang plugin (Darwin)
3333
if: runner.os == 'MacOS'

.github/workflows/e2e_test_linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
echo "deb [trusted=yes] https://apt.fury.io/versionfox/ /" | sudo tee /etc/apt/sources.list.d/versionfox.list
2525
sudo apt-get update
26-
sudo apt-get install vfox
26+
sudo apt-get install vfox=0.6.4
2727
2828
- name: add vfox-erlang plugin (Unix-like)
2929
run: |

.github/workflows/e2e_test_linux_prebuilt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
echo "deb [trusted=yes] https://apt.fury.io/versionfox/ /" | sudo tee /etc/apt/sources.list.d/versionfox.list
2525
sudo apt-get update
26-
sudo apt-get install vfox
26+
sudo apt-get install vfox=0.6.4
2727
2828
- name: add vfox-erlang plugin (Unix-like)
2929
run: |

.github/workflows/e2e_test_windows.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
schedule:
99
# Runs at 12am UTC
10-
- cron: '0 0 * * *'
10+
- cron: "0 0 * * *"
1111

1212
jobs:
1313
e2e_tests:
@@ -18,17 +18,17 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- uses: actions/checkout@v4
21-
21+
2222
- name: install scoop (Windows)
2323
if: runner.os == 'Windows'
2424
uses: MinoruSekine/setup-scoop@v3
25-
26-
- name: install vfox (Windows)
25+
26+
- name: install vfox (Windows)
2727
if: runner.os == 'Windows'
2828
run: |
29-
scoop install vfox
29+
scoop install vfox@0.6.4
3030
31-
- name: add vfox-erlang plugin (Windows)
31+
- name: add vfox-erlang plugin (Windows)
3232
if: runner.os == 'Windows'
3333
run: |
3434
vfox add --source https://github.com/version-fox/vfox-erlang/archive/$env:GITHUB_REF.zip erlang

0 commit comments

Comments
 (0)