diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-07-15 13:31:48 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-07-15 13:31:48 +0200 |
commit | eb679e2959bdb15454eb94751930eb4c9110da94 (patch) | |
tree | 4fb07c76f3396ca02cd68074973882d063be23a8 /.github/workflows/selfhosted.yml | |
parent | Rename bbone test target to ARM. (diff) | |
download | openssh-eb679e2959bdb15454eb94751930eb4c9110da94.tar.xz openssh-eb679e2959bdb15454eb94751930eb4c9110da94.zip |
Move vmshutdown to first step.
If a previous run on a physical runner has failed to clean up, the next
run will fail because it'll try to check out the code to a broken
directory mount. Make cleanup the first step.
Diffstat (limited to '.github/workflows/selfhosted.yml')
-rw-r--r-- | .github/workflows/selfhosted.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/selfhosted.yml b/.github/workflows/selfhosted.yml index fcbb6d94f..7ce318b17 100644 --- a/.github/workflows/selfhosted.yml +++ b/.github/workflows/selfhosted.yml @@ -72,11 +72,11 @@ jobs: # - { os: sol11, configs: sol64-pam } - { os: win10, configs: cygwin-release } steps: + - name: shutdown VM if running + run: vmshutdown - uses: actions/checkout@v2 - name: autoreconf run: autoreconf - - name: shutdown VM if running - run: vmshutdown - name: startup VM run: vmstartup - name: configure |