1name: Teardown ROCm host 2 3description: Tear down ROCm host for CI 4 5runs: 6 using: composite 7 steps: 8 - name: Teardown ROCm 9 if: always() 10 shell: bash 11 run: | 12 # ignore expansion of "docker ps -q" since it could be empty 13 # shellcheck disable=SC2046 14 docker stop $(docker ps -q) || true 15 # Prune all stopped containers. 16 docker container prune -f 17 - name: Runner diskspace health check 18 uses: ./.github/actions/diskspace-cleanup 19 if: always() 20