Skip to content

Commit

Permalink
[7.x](backport #25708) Remove 32 bits version of Elastic Agent. (#26215)
Browse files Browse the repository at this point in the history
Co-authored-by: Pier-Hugues Pellerin <phpellerin@gmail.com>
Co-authored-by: Michal Pristas <michal.pristas@gmail.com>
  • Loading branch information
3 people committed Jun 16, 2021
1 parent e244d44 commit ed515e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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
5 changes: 3 additions & 2 deletions x-pack/elastic-agent/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ func init() {

devtools.BeatDescription = "Agent manages other beats based on configuration provided."
devtools.BeatLicense = "Elastic License"

devtools.Platforms = devtools.Platforms.Filter("!linux/386")
devtools.Platforms = devtools.Platforms.Filter("!windows/386")
}

// Default set to build everything by default.
Expand Down Expand Up @@ -303,10 +306,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

0 comments on commit ed515e1

Please sign in to comment.