Skip to content

Commit

Permalink
Add clean up workdir (#1244)
Browse files Browse the repository at this point in the history
Fixes #1095.
  • Loading branch information
kuznetsss authored Mar 7, 2024
1 parent 74455f5 commit 7b84fab
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ jobs:
--health-retries 5
steps:
- name: Clean workdir
if: ${{ runner.os == 'macOS' }}
uses: kuznetsss/[email protected]

- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down Expand Up @@ -167,6 +171,10 @@ jobs:
container: ${{ matrix.container }}

steps:
- name: Clean workdir
if: ${{ runner.os == 'macOS' }}
uses: kuznetsss/[email protected]

- uses: actions/download-artifact@v3
with:
name: clio_tests_${{ runner.os }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
container: ${{ matrix.container }}

steps:
- name: Clean workdir
if: ${{ runner.os == 'macOS' }}
uses: kuznetsss/[email protected]

- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down Expand Up @@ -85,6 +89,10 @@ jobs:
runs-on: [self-hosted, "${{ matrix.os }}"]

steps:
- name: Clean workdir
if: ${{ runner.os == 'macOS' }}
uses: kuznetsss/[email protected]

- uses: actions/download-artifact@v3
with:
name: clio_tests_${{ runner.os }}_${{ matrix.build_type }}
Expand Down

0 comments on commit 7b84fab

Please sign in to comment.