Skip to content

Commit

Permalink
fix(ci): fixes for ephemeral nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
timothystewart6 committed Jan 27, 2024
1 parent de26a79 commit 98ef696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Remove all local Vagrant boxes
if: always() # do this even if a step before has failed
run: if vagrant box list &> /dev/null; then vagrant box list | cut -f 1 -d ' ' | xargs -L 1 vagrant box remove -f; echo "All Vagrant boxes removed."; else echo "No Vagrant boxes found."; fi
run: if vagrant box list 2>/dev/null; then vagrant box list | cut -f 1 -d ' ' | xargs -L 1 vagrant box remove -f 2>/dev/null && echo "All Vagrant boxes removed." || echo "No Vagrant boxes found."; else echo "No Vagrant boxes found."; fi

- name: Remove all Virtualbox VMs
if: always() # do this even if a step before has failed
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Remove all local Vagrant boxes
if: always() # do this even if a step before has failed
run: if vagrant box list &> /dev/null; then vagrant box list | cut -f 1 -d ' ' | xargs -L 1 vagrant box remove -f; echo "All Vagrant boxes removed."; else echo "No Vagrant boxes found."; fi
run: if vagrant box list 2>/dev/null; then vagrant box list | cut -f 1 -d ' ' | xargs -L 1 vagrant box remove -f 2>/dev/null && echo "All Vagrant boxes removed." || echo "No Vagrant boxes found."; else echo "No Vagrant boxes found."; fi

- name: Remove all Virtualbox VMs
if: always() # do this even if a step before has failed
Expand Down

0 comments on commit 98ef696

Please sign in to comment.