Skip to content

Commit

Permalink
ci: Make sure containers are always cleaned up even tests fail (#2959)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkundu1 authored Jun 20, 2024
1 parent 776d69d commit d143b57
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ jobs:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Cleanup previous docker containers
if: always()
run: make cleanup-previous-docker-containers

- name: Upload 24.2 Coverage Artifacts
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-run-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,5 @@ jobs:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Cleanup previous docker containers
if: always()
run: make cleanup-previous-docker-containers
1 change: 1 addition & 0 deletions .github/workflows/test-run-dev-version-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ jobs:
FLUENT_IMAGE_TAG: v25.1.0

- name: Cleanup previous docker containers
if: always()
run: make cleanup-previous-docker-containers

- name: Update Fluent image
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-run-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ jobs:
FLUENT_IMAGE_TAG: v24.2.0

- name: Cleanup previous docker containers
if: always()
run: make cleanup-previous-docker-containers

- name: Upload 24.2 Coverage Results to Codecov
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-run-old-versions-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,5 @@ jobs:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Cleanup previous docker containers
if: always()
run: make cleanup-previous-docker-containers
1 change: 1 addition & 0 deletions .github/workflows/test-run-solvermode-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,5 @@ jobs:
make unittest-solvermode-251
- name: Cleanup previous docker containers
if: always()
run: make cleanup-previous-docker-containers
1 change: 1 addition & 0 deletions .github/workflows/test-run-wo-codegen-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,5 @@ jobs:
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Cleanup previous docker containers
if: always()
run: make cleanup-previous-docker-containers

0 comments on commit d143b57

Please sign in to comment.