From 6866def07149adb5a9ed8168022ecdd0fb7a9634 Mon Sep 17 00:00:00 2001 From: Pier-Hugues Pellerin Date: Fri, 17 Apr 2020 09:19:37 -0400 Subject: [PATCH] [Agent] Allow arm64 as a testing packages (#17767) * Allow arm64 as a testing packages We don't plan to release the arm64 package buts let's keep it as a target. * changelog` * rm space --- x-pack/elastic-agent/CHANGELOG.asciidoc | 1 + x-pack/elastic-agent/magefile.go | 1 + 2 files changed, 2 insertions(+) diff --git a/x-pack/elastic-agent/CHANGELOG.asciidoc b/x-pack/elastic-agent/CHANGELOG.asciidoc index 9547f2f80ca6..6ce888c26fc3 100644 --- a/x-pack/elastic-agent/CHANGELOG.asciidoc +++ b/x-pack/elastic-agent/CHANGELOG.asciidoc @@ -18,6 +18,7 @@ - Fixed merge of config {pull}17399[17399] - Handle abs paths on windows correctly {pull}17461[17461] - Improved cancellation of agent {pull}17318[17318] +- Fix issues when running `mage package` for all the platforms. {pull}17767[17767] - Remove the kbn-version on each request to the Kibana API. {pull}17764[17764] - Fixed process spawning on Windows {pull}17751[17751] diff --git a/x-pack/elastic-agent/magefile.go b/x-pack/elastic-agent/magefile.go index 50c7047f6ccc..a626d638cf1c 100644 --- a/x-pack/elastic-agent/magefile.go +++ b/x-pack/elastic-agent/magefile.go @@ -277,6 +277,7 @@ func Package() { "linux-x86_64.tar.gz", "windows-x86.zip", "windows-x86_64.zip", + "linux-arm64.tar.gz", }, devtools.UseElasticAgentPackaging) }