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

Remove 32 bits version of Elastic Agent. #25708

Merged
merged 2 commits into from
Jun 8, 2021
Merged
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
1 change: 1 addition & 0 deletions x-pack/elastic-agent/CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Remove obfuscation of fleet.yml, causes re-enroll of agent to Fleet {pull}19678[19678]
- Rename enroll --ca_sha256 to --ca-sha256 {pull}19900[19900]
- Rename enroll --certificate_authorities to --certificate-authorities {pull}19900[19900]
- Don't build 32 bits version of Elastic Agent. {issue}25533[25533]

==== Bugfixes

Expand Down
3 changes: 1 addition & 2 deletions x-pack/elastic-agent/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ func init() {

devtools.BeatDescription = "Agent manages other beats based on configuration provided."
devtools.BeatLicense = "Elastic License"
devtools.Platforms = devtools.NewPlatformList("!linux/386 !windows/386")
}

// Default set to build everything by default.
Expand Down Expand Up @@ -303,10 +304,8 @@ func Package() {
packages string
}{
{"darwin/amd64", "darwin-x86_64.tar.gz"},
{"linux/386", "linux-x86.tar.gz"},
{"linux/amd64", "linux-x86_64.tar.gz"},
{"linux/arm64", "linux-arm64.tar.gz"},
{"windows/386", "windows-x86.zip"},
{"windows/amd64", "windows-x86_64.zip"},
}

Expand Down