Skip to content

Commit f71a0d2

Browse files
authored
Remove 32 bits version of Elastic Agent. (#25708)
1 parent 689a746 commit f71a0d2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

x-pack/elastic-agent/CHANGELOG.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- Remove obfuscation of fleet.yml, causes re-enroll of agent to Fleet {pull}19678[19678]
1313
- Rename enroll --ca_sha256 to --ca-sha256 {pull}19900[19900]
1414
- Rename enroll --certificate_authorities to --certificate-authorities {pull}19900[19900]
15+
- Don't build 32 bits version of Elastic Agent. {issue}25533[25533]
1516

1617
==== Bugfixes
1718

x-pack/elastic-agent/magefile.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ func init() {
5858

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

6364
// Default set to build everything by default.
@@ -303,10 +304,8 @@ func Package() {
303304
packages string
304305
}{
305306
{"darwin/amd64", "darwin-x86_64.tar.gz"},
306-
{"linux/386", "linux-x86.tar.gz"},
307307
{"linux/amd64", "linux-x86_64.tar.gz"},
308308
{"linux/arm64", "linux-arm64.tar.gz"},
309-
{"windows/386", "windows-x86.zip"},
310309
{"windows/amd64", "windows-x86_64.zip"},
311310
}
312311

0 commit comments

Comments
 (0)