Run vm startup and shutdown from runner temp dir.
Should work even if the github workspace dir is on a stale sshfs mount.
This commit is contained in:
parent
2b40a7dfcd
commit
a32c07cbb7
|
@ -74,6 +74,7 @@ jobs:
|
|||
steps:
|
||||
- name: shutdown VM if running
|
||||
run: vmshutdown
|
||||
working-directory: ${{ runner.temp }}
|
||||
- uses: actions/checkout@main
|
||||
- name: autoreconf
|
||||
run: autoreconf
|
||||
|
@ -106,3 +107,4 @@ jobs:
|
|||
- name: shutdown VM
|
||||
if: always()
|
||||
run: vmshutdown
|
||||
working-directory: ${{ runner.temp }}
|
||||
|
|
|
@ -20,6 +20,7 @@ jobs:
|
|||
- uses: actions/checkout@main
|
||||
- name: shutdown VM if running
|
||||
run: vmshutdown
|
||||
working-directory: ${{ runner.temp }}
|
||||
- name: startup VM
|
||||
run: vmstartup
|
||||
- name: update source
|
||||
|
@ -45,3 +46,4 @@ jobs:
|
|||
- name: shutdown VM
|
||||
if: always()
|
||||
run: vmshutdown
|
||||
working-directory: ${{ runner.temp }}
|
||||
|
|
Loading…
Reference in New Issue