From a38da6a5d06c561b97cfa82462f83f21fbfb0cda Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Sat, 1 Nov 2025 20:46:22 +0100 Subject: [PATCH] Stop build tests for Debian bookworm Debian bookworm uses golang 1.19, which is rather outdated. In preperation of switching to go modules that require a newer go stop build testing with Debian bookworm. Leaving current Debian stable (trixie), testing (forky) and arch. Fixes: #564 Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> --- .github/copilot-instructions.md | 2 +- .github/workflows/ci.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index fbb880a..42e6117 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -164,7 +164,7 @@ The `.github/workflows/ci.yaml` runs: - `go build github.com/sjoerdsimons/ostree-go/pkg/otbuiltin` (pre-build required!) - `golangci-lint` with v2.3.1 -2. **test** job - Matrix of 4 variants (arch, bookworm, trixie, forky) +2. **test** job - Matrix of 3 variants (arch, trixie, forky) - Build with version: `go build -ldflags="-X main.Version=${DEBOS_VER}" ./cmd/debos` - Run unit tests: `go test -v ./...` - Verify no skipped tests: `! grep -q SKIP test.out` diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a6ec07b..d11a61f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -52,7 +52,6 @@ jobs: matrix: variant: - arch - - bookworm - trixie - forky runs-on: ubuntu-latest