mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
9a417df940
## Description Add exponential backoff retries to all `go install` and `go mod download` commands across CI workflows and actions. ## Why Fixes [coder/internal#1276](https://github.com/coder/internal/issues/1276) - CI fails when `sum.golang.org` returns 500 errors during Go module verification. This is an infrastructure-level flake that can't be controlled. ## Changes - Created `.github/scripts/retry.sh` - reusable retry helper with exponential backoff (2s, 4s, 8s delays, max 3 attempts), using `scripts/lib.sh` helpers - Wrapped all `go install` and `go mod download` commands with retry in: - `.github/actions/setup-go/action.yaml` - `.github/actions/setup-sqlc/action.yaml` - `.github/actions/setup-go-tools/action.yaml` - `.github/workflows/ci.yaml` - `.github/workflows/release.yaml` - `.github/workflows/security.yaml` - Added GNU tools setup (bash 4+, GNU getopt, make 4+) for macOS in `test-go-pg` job, since `retry.sh` uses `lib.sh` which requires these tools
18 lines
618 B
YAML
18 lines
618 B
YAML
name: Setup sqlc
|
|
description: |
|
|
Sets up the sqlc environment for tests, builds, etc.
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup sqlc
|
|
# uses: sqlc-dev/setup-sqlc@c0209b9199cd1cce6a14fc27cabcec491b651761 # v4.0.0
|
|
# with:
|
|
# sqlc-version: "1.30.0"
|
|
|
|
# Switched to coder/sqlc fork to fix ambiguous column bug, see:
|
|
# - https://github.com/coder/sqlc/pull/1
|
|
# - https://github.com/sqlc-dev/sqlc/pull/4159
|
|
shell: bash
|
|
run: |
|
|
./.github/scripts/retry.sh -- env CGO_ENABLED=1 go install github.com/coder/sqlc/cmd/sqlc@aab4e865a51df0c43e1839f81a9d349b41d14f05
|