Skip to content
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a1fecf3
ci(ff): support feature freeze automation phase 1
v1v Mar 12, 2026
23422b9
ci(ff): support feature freeze automation phase 2
v1v Mar 12, 2026
a666488
update
v1v Mar 12, 2026
eff7847
fix linting
v1v Mar 12, 2026
8f0005e
Merge branch 'main' into feature/support-ff-fleet-server
v1v Mar 23, 2026
de623a9
go mod tidy
v1v Mar 23, 2026
f48d911
Merge branch 'main' into feature/support-ff-fleet-server
v1v Mar 23, 2026
6d46ae9
Merge upstream/main into feature/support-ff-fleet-server
fr4nc1sc0-r4m0n Jul 9, 2026
bf17d6f
fix(ci): update magefile_test.go license header to Elastic License 2.0
fr4nc1sc0-r4m0n Jul 9, 2026
c67df45
Make release automation idempotent on re-run
fr4nc1sc0-r4m0n Jul 9, 2026
64eae34
refactor(release): extract FF automation to dev-tools/mage/release
fr4nc1sc0-r4m0n Jul 9, 2026
815c688
fix(ci): allow local go.mod replace for dev-tools module
fr4nc1sc0-r4m0n Jul 9, 2026
457a0a7
fix(docker): copy dev-tools go.mod before go mod download
fr4nc1sc0-r4m0n Jul 9, 2026
8b52201
Merge branch 'main' into feature/support-ff-fleet-server
fr4nc1sc0-r4m0n Jul 14, 2026
f3e6949
Align fleet-server release automation with ingest-dev fleet-server.mak
fr4nc1sc0-r4m0n Jul 14, 2026
ddee08c
Merge upstream/main into feature/support-ff-fleet-server
fr4nc1sc0-r4m0n Jul 21, 2026
f7af98e
ci(ff): align release automation with beats and elastic-agent
fr4nc1sc0-r4m0n Jul 22, 2026
358baf1
Merge branch 'main' into feature/support-ff-fleet-server
fr4nc1sc0-r4m0n Jul 22, 2026
fb93ee0
fix(release): fall back to git tags when GitHub Releases are empty
fr4nc1sc0-r4m0n Jul 22, 2026
47042ea
ci: wire version-bump pipeline to mage release targets
fr4nc1sc0-r4m0n Jul 24, 2026
c2ef7c9
Merge upstream/main into feature/support-ff-fleet-server
fr4nc1sc0-r4m0n Jul 24, 2026
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: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ linters:
min-occurrences: 2

gomoddirectives:
# Allow local `replace` directives. Default is false.
replace-local: false
# Allow local `replace` directives (e.g. dev-tools submodule in go.mod).
replace-local: true
gomodguard:
blocked:
# List of blocked modules.
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ WORKDIR /fleet-server

# pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change
COPY go.mod go.sum ./
COPY dev-tools/go.mod dev-tools/go.sum ./dev-tools/
RUN go mod download && go mod verify
RUN go install github.com/magefile/mage # Uses version from go.mod implicitly
ENV PATH="$PATH:/go/bin"
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ USER fleet-server
WORKDIR /fleet-server/
# pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change
COPY go.mod go.sum ./
COPY dev-tools/go.mod dev-tools/go.sum ./dev-tools/
RUN go mod download && go mod verify
RUN go install github.com/magefile/mage # uses version in go.mod

Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.fips
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ WORKDIR /fleet-server/

# pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change
COPY go.mod go.sum ./
COPY dev-tools/go.mod dev-tools/go.sum ./dev-tools/
# GOFIPS140 must be set before go mod download so that the golang.org/fips140 module is cached during image build.
# Without this, the module would be fetched at build time by the host user who lacks write access to the module cache.
ENV GOFIPS140=certified
Expand All @@ -32,6 +33,7 @@ FROM docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-${SUFFIX} AS bu
WORKDIR /fleet-server
ENV PATH="$PATH:/go/bin"
COPY go.mod go.sum ./
COPY dev-tools/go.mod dev-tools/go.sum ./dev-tools/
RUN go mod download && go mod verify
RUN go install github.com/magefile/mage # uses version in go.mod

Expand Down
Loading
Loading