diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 0070899e9774..011fbf824f96 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -221,12 +221,10 @@ jobs: - name: Inspect cache directories run: | mkdir -p ~/.triton - ls -alh ~/.triton - du -sh ~/.triton/** + du -h -d 1 ~/.triton mkdir -p ~/.ccache - ls -alh ~/.ccache - du -sh ~/.ccache + du -h -d 1 ~/.ccache - name: Update PATH run: | echo "$HOME/.local/bin" >> $GITHUB_PATH @@ -295,12 +293,10 @@ jobs: - name: Inspect cache directories run: | mkdir -p ~/.triton - ls -alh ~/.triton - du -sh ~/.triton/** + du -h -d 1 ~/.triton mkdir -p ~/.ccache - ls -alh ~/.ccache - du -sh ~/.ccache + du -h -d 1 ~/.ccache - # If we're on branch `main`, save the ccache Triton compilation artifacts # to the cache so they can be used by other (non-main) CI runs. # @@ -391,12 +387,10 @@ jobs: - name: Inspect cache directories run: | mkdir -p ~/.triton - ls -alh ~/.triton - du -sh ~/.triton/** + du -h -d 1 ~/.triton mkdir -p ~/.ccache - ls -alh ~/.ccache - du -sh ~/.ccache + du -h -d 1 ~/.ccache - name: Update PATH run: | echo "/opt/rocm/llvm/bin" >> $GITHUB_PATH @@ -467,12 +461,10 @@ jobs: - name: Inspect cache directories run: | mkdir -p ~/.triton - ls -alh ~/.triton - du -sh ~/.triton/** + du -h -d 1 ~/.triton mkdir -p ~/.ccache - ls -alh ~/.ccache - du -sh ~/.ccache + du -h -d 1 ~/.ccache - # If we're on branch `main`, save the ccache Triton compilation artifacts # to the cache so they can be used by other (non-main) CI runs. # @@ -566,12 +558,10 @@ jobs: - name: Inspect cache directories run: | mkdir -p ~/.triton - ls -alh ~/.triton - du -sh ~/.triton/** + du -h -d 1 ~/.triton mkdir -p ~/.ccache - ls -alh ~/.ccache - du -sh ~/.ccache + du -h -d 1 ~/.ccache - name: Update PATH run: | echo "$HOME/.local/bin" >> $GITHUB_PATH @@ -599,12 +589,10 @@ jobs: - name: Inspect cache directories run: | mkdir -p ~/.triton - ls -alh ~/.triton - du -sh ~/.triton/** + du -h -d 1 ~/.triton mkdir -p ~/.ccache - ls -alh ~/.ccache - du -sh ~/.ccache + du -h -d 1 ~/.ccache - # If we're on branch `main`, save the ccache Triton compilation artifacts # to the cache so they can be used by other (non-main) CI runs. # diff --git a/.github/workflows/integration-tests.yml.in b/.github/workflows/integration-tests.yml.in index 4404b2aa6052..02e0b04653b2 100644 --- a/.github/workflows/integration-tests.yml.in +++ b/.github/workflows/integration-tests.yml.in @@ -250,12 +250,10 @@ jobs: name: Inspect cache directories run: | mkdir -p ~/.triton - ls -alh ~/.triton - du -sh ~/.triton/** + du -h -d 1 ~/.triton mkdir -p ~/.ccache - ls -alh ~/.ccache - du -sh ~/.ccache + du -h -d 1 ~/.ccache - name: Update PATH run: |