File tree 1 file changed +24
-7
lines changed
1 file changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -103,16 +103,33 @@ jobs:
103
103
time brew update
104
104
time brew install qemu bash coreutils
105
105
time brew upgrade
106
- - name : Install vde_vmnet
106
+ - name : Install vde_switch and vde_vmnet
107
107
if : matrix.example == 'vmnet.yaml'
108
108
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
110
113
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
+ )
116
133
- name : Prepare ssh
117
134
run : |
118
135
if [ -e ~/.ssh/id_rsa ]; then
You can’t perform that action at this time.
0 commit comments