Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ jobs:
with:
go-version: ${{ matrix.go }}
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: test -race
working-directory: ${{ env.MODULE }}
run: go test -race ./...
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/sink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
with:
go-version: ${{ matrix.go }}
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: test -race
shell: bash
run: |
Expand Down Expand Up @@ -84,6 +88,10 @@ jobs:
with:
go-version: "1.26.4"
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: test -race
shell: bash
run: go test -C "${{ matrix.module }}" -race ./...
Expand Down Expand Up @@ -147,6 +155,10 @@ jobs:
with:
go-version: "1.26.4"
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: integration tests
shell: bash
run: go test -C "${{ matrix.module }}" -tags integration ./...
12 changes: 12 additions & 0 deletions .github/workflows/source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
with:
go-version: ${{ matrix.go }}
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: test -race
shell: bash
run: |
Expand Down Expand Up @@ -73,6 +77,10 @@ jobs:
with:
go-version: "1.26.4"
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: test -race
shell: bash
run: go test -C "${{ matrix.module }}" -race ./...
Expand Down Expand Up @@ -119,6 +127,10 @@ jobs:
with:
go-version: "1.26.4"
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: integration tests
shell: bash
run: go test -C "${{ matrix.module }}" -tags integration ./...
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
with:
go-version: ${{ matrix.go }}
cache-dependency-path: "**/go.sum"
# Skip the Go cache save on Windows: the tar/zstd cache-save post-step
# flakes intermittently on windows-latest and fails the job even when
# tests pass. Linux and macOS keep caching.
cache: ${{ runner.os != 'Windows' }}
- name: test -race
shell: bash
run: |
Expand Down
Loading