@@ -235,6 +235,11 @@ jobs:
235235 run : go test -v ./...
236236 - name : Make
237237 run : make
238+ - name : " Inject `no_timer_check` to kernel cmdline"
239+ # workaround to https://github.com/lima-vm/lima/issues/84
240+ run : |
241+ export PATH="$PWD/_output/bin:$PATH"
242+ ./hack/inject-cmdline-to-template.sh _output/share/lima/templates/_images/ubuntu.yaml no_timer_check
238243 - name : Install
239244 run : sudo make install
240245 - name : Validate jsonschema
@@ -259,9 +264,6 @@ jobs:
259264 run : brew install bash coreutils w3m socat
260265 - name : " Adjust LIMACTL_CREATE_ARGS"
261266 run : echo "LIMACTL_CREATE_ARGS=${LIMACTL_CREATE_ARGS} --vm-type=qemu" >>$GITHUB_ENV
262- - name : " Inject `no_timer_check` to kernel cmdline"
263- # workaround to https://github.com/lima-vm/lima/issues/84
264- run : ./hack/inject-cmdline-to-template.sh templates/_images/ubuntu.yaml no_timer_check
265267 - name : Cache image used by default.yaml
266268 uses : ./.github/actions/setup_cache_for_template
267269 with :
@@ -450,13 +452,15 @@ jobs:
450452 go-version : 1.25.x
451453 - name : Make
452454 run : make
455+ - name : " Inject `no_timer_check` to kernel cmdline"
456+ # workaround to https://github.com/lima-vm/lima/issues/84
457+ run : |
458+ export PATH="$PWD/_output/bin:$PATH"
459+ ./hack/inject-cmdline-to-template.sh _output/share/lima/templates/_images/ubuntu.yaml no_timer_check
453460 - name : Install
454461 run : sudo make install
455462 - name : " Adjust LIMACTL_CREATE_ARGS"
456463 run : echo "LIMACTL_CREATE_ARGS=${LIMACTL_CREATE_ARGS} --vm-type=qemu --network=lima:shared" >>$GITHUB_ENV
457- - name : " Inject `no_timer_check` to kernel cmdline"
458- # workaround to https://github.com/lima-vm/lima/issues/84
459- run : ./hack/inject-cmdline-to-template.sh templates/_images/ubuntu.yaml no_timer_check
460464 - name : Cache image used by default .yaml
461465 uses : ./.github/actions/setup_cache_for_template
462466 with :
0 commit comments