Skip to content

Commit 5258ac0

Browse files
authored
Merge pull request #181 from AkihiroSuda/update-vde
CI: update vde_vmnet to v0.5.0
2 parents 8e8d8a3 + 610cd55 commit 5258ac0

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

.github/workflows/test.yml

+24-7
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,33 @@ jobs:
103103
time brew update
104104
time brew install qemu bash coreutils
105105
time brew upgrade
106-
- name: Install vde_vmnet
106+
- name: Install vde_switch and vde_vmnet
107107
if: matrix.example == 'vmnet.yaml'
108108
env:
109-
VDE_VMNET_VERSION: v0.4.0
109+
# 2021-08-31
110+
VDE2_VERSION: 50964c3fb0776e82f8bd1ecdc527683966f3d52c
111+
# 2021-09-01
112+
VDE_VMNET_VERSION: v0.5.0
110113
run: |
111-
git clone https://github.com/lima-vm/vde_vmnet
112-
cd vde_vmnet
113-
git checkout $VDE_VMNET_VERSION
114-
make
115-
sudo make install
114+
(
115+
brew install autoconf automake
116+
)
117+
(
118+
git clone https://github.com/virtualsquare/vde-2
119+
cd vde-2
120+
git checkout $VDE2_VERSION
121+
autoreconf -fis
122+
./configure --prefix=/opt/vde
123+
make
124+
sudo make install
125+
)
126+
(
127+
git clone https://github.com/lima-vm/vde_vmnet
128+
cd vde_vmnet
129+
git checkout $VDE_VMNET_VERSION
130+
make PREFIX=/opt/vde
131+
sudo make PREFIX=/opt/vde install
132+
)
116133
- name: Prepare ssh
117134
run: |
118135
if [ -e ~/.ssh/id_rsa ]; then

0 commit comments

Comments
 (0)