Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update go version and FDB versions for e2e testing #2194

Merged
merged 3 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.10
go-version: 1.23.5
- name: Get dependencies
run: curl -L --fail "https://github.com/apple/foundationdb/releases/download/${FDB_VER}/foundationdb-clients_${FDB_VER}-1_amd64.deb" -o fdb.deb
- name: Install dependencies
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.10
go-version: 1.23.5
- name: Fetch all tags
run: git fetch --force --tags
- name: Get dependencies
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.10
go-version: 1.23.5
- name: Fetch all tags
run: git fetch --force --tags
- name: Get dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.10
go-version: 1.23.5
# https://github.com/goreleaser/goreleaser/issues/1311
- name: Get current semver tag
run: echo "::set-output name=CURRENT_TAG::$(git describe --tags --match "v*" --abbrev=0)"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG FDB_VERSION=6.2.29
ARG FDB_WEBSITE=https://github.com/apple/foundationdb/releases/download

# Build the manager binary
FROM docker.io/library/golang:1.22.10 AS builder
FROM docker.io/library/golang:1.23.5 AS builder

ARG FDB_VERSION
ARG FDB_WEBSITE
Expand Down
10 changes: 5 additions & 5 deletions e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ TIMEOUT?=168h
CLUSTER_NAME?=
NAMESPACE?=
CONTEXT?=
FDB_VERSION?=7.1.63
FDB_VERSION?=7.1.57
# This will be the version used for upgrade tests.
NEXT_FDB_VERSION?=7.3.43
NEXT_FDB_VERSION?=7.3.59
## Expectation is that you are running standard build image which generates both regular and debug (Symbols) images.
FDB_IMAGE?=foundationdb/foundationdb:$(FDB_VERSION)
UNIFIED_FDB_IMAGE?=foundationdb/fdb-kubernetes-monitor:$(FDB_VERSION)
SIDECAR_IMAGE?=foundationdb/foundationdb-kubernetes-sidecar:$(FDB_VERSION)-1
FDB_IMAGE?=foundationdb/foundationdb
UNIFIED_FDB_IMAGE?=foundationdb/fdb-kubernetes-monitor
SIDECAR_IMAGE?=foundationdb/foundationdb-kubernetes-sidecar
OPERATOR_IMAGE?=foundationdb/fdb-kubernetes-operator:latest
REGISTRY?=docker.io
CLEANUP?=true
Expand Down
Loading