File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -121,11 +121,15 @@ jobs:
121
121
ssh_port=$(python3 -c 'import socket; s=socket.socket(); s.bind(("", 0)); print(s.getsockname()[1]); s.close()')
122
122
echo metal_arm64=true >> $GITHUB_OUTPUT
123
123
echo lvh_install_deps=false >> $GITHUB_OUTPUT
124
+ echo kernel=${{ matrix.kernel }}-arm64 >> $GITHUB_OUTPUT
125
+ echo lvh_kernel="/home/runners/vmlinuz-${{ matrix.kernel }}" >> $GITHUB_OUTPUT
124
126
echo ssh_port=$ssh_port >> $GITHUB_OUTPUT
125
127
echo shared_folder="/home/runners" >> $GITHUB_OUTPUT
126
128
else
127
129
echo metal_arm64=false >> $GITHUB_OUTPUT
128
130
echo lvh_install_deps=true >> $GITHUB_OUTPUT
131
+ echo kernel=${{ matrix.kernel }} >> $GITHUB_OUTPUT
132
+ echo lvh_kernel="" >> $GITHUB_OUTPUT
129
133
echo ssh_port=2222 >> $GITHUB_OUTPUT
130
134
echo shared_folder="" >> $GITHUB_OUTPUT
131
135
fi
@@ -191,7 +195,8 @@ jobs:
191
195
mem : 4G
192
196
cpu : 2
193
197
test-name : pwru-test
194
- image-version : ${{ matrix.kernel }}
198
+ image-version : ${{ steps.vars.outputs.kernel }}
199
+ kernel : ' ${{ steps.vars.outputs.lvh_kernel }}'
195
200
host-mount : ./
196
201
cmd : |
197
202
chmod +x /host/pwru/pwru
You can’t perform that action at this time.
0 commit comments