From 06914f6bac02e031367370d4324beda2852243c2 Mon Sep 17 00:00:00 2001 From: donoghuc Date: Fri, 5 Sep 2025 11:44:48 -0700 Subject: [PATCH] Use 8.19 series for filebeat integration tests This commit updates the filebeat integration tests to use a newer version. Note that for ci we use x86_64 for linux and for local testing arm on mac. --- lib/tasks/test.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake index 8057a7f7..3c3b4452 100644 --- a/lib/tasks/test.rake +++ b/lib/tasks/test.rake @@ -4,9 +4,9 @@ VENDOR_PATH = File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "ve #TODO: Figure out better means to keep this version in sync if OS_PLATFORM == "linux" - FILEBEAT_URL = "https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.6.0-linux-x86_64.tar.gz" + FILEBEAT_URL = "https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-8.19.2-linux-x86_64.tar.gz" elsif OS_PLATFORM == "darwin" - FILEBEAT_URL = "https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.6.0-darwin-x86_64.tar.gz" + FILEBEAT_URL = "https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-8.19.2-linux-arm64.tar.gz" end require "fileutils"