Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/setup-go@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/idle_timer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
idletimer:
name: idle-timer
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 5
steps:
- uses: actions/setup-go@v3
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ on:
jobs:
linux:
name: create linux binaries
runs-on: ubuntu-20.04
# Use the oldest available Ubuntu image to keep the glibc version low for the
# published, dynamically-linked (cgo, non-static) linux-x86_64 binary. Building
# on a newer image would raise the glibc floor and break older target systems.
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -37,7 +40,7 @@ jobs:

mac:
name: create mac binaries
runs-on: macos-11
runs-on: blacksmith-6vcpu-macos-15
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion cache/grpcproxy/grpcproxy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ func newFixture(t *testing.T, proxy cache.Proxy, storageMode string) *fixture {
go func() {
err := server.ServeGRPC(listener, grpcServer, false, false, true, diskCache, logger, logger)
if err != nil {
logger.Printf(err.Error())
logger.Print(err.Error())
}
}()

Expand Down
Loading