Skip to content

Commit 01c1759

Browse files
Merge branch 'main' into add-windowseventlogreceiver
2 parents 93df2d5 + 1a0b8e3 commit 01c1759

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

pkg/component/platforms.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ var GlobalPlatforms = Platforms{
8181
Arch: AMD64,
8282
GOOS: Windows,
8383
},
84+
{
85+
OS: Windows,
86+
Arch: ARM64,
87+
GOOS: Windows,
88+
},
8489
}
8590

8691
// String returns the platform string identifier.

specs/testbeat.spec.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ inputs:
1111
- windows/amd64
1212
- container/amd64
1313
- container/arm64
14+
- windows/arm64
1415
outputs: &outputs
1516
- elasticsearch
1617
- kafka

testing/integration/ess/upgrade_fleet_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ func TestFleetManagedUpgradeUnprivileged(t *testing.T) {
5252
Local: false, // requires Agent installation
5353
Sudo: true, // requires Agent installation
5454
})
55+
t.Skip("Skipping test temporarily until the DRA with the code that supports windows/arm64 is produced")
5556
testFleetManagedUpgrade(t, info, true, false)
5657
}
5758

@@ -66,6 +67,7 @@ func TestFleetManagedUpgradePrivileged(t *testing.T) {
6667
Local: false, // requires Agent installation
6768
Sudo: true, // requires Agent installation
6869
})
70+
t.Skip("Skipping test temporarily until the DRA with the code that supports windows/arm64 is produced")
6971
testFleetManagedUpgrade(t, info, false, false)
7072
}
7173

@@ -124,6 +126,7 @@ func TestFleetAirGappedUpgradeUnprivileged(t *testing.T) {
124126
Local: false, // Needed as the test requires Agent installation
125127
Sudo: true, // Needed as the test uses iptables and installs the Agent
126128
})
129+
t.Skip("Skipping test temporarily until the DRA with the code that supports windows/arm64 is produced")
127130
testFleetAirGappedUpgrade(t, stack, true)
128131
}
129132

@@ -136,6 +139,7 @@ func TestFleetAirGappedUpgradePrivileged(t *testing.T) {
136139
Local: false, // Needed as the test requires Agent installation
137140
Sudo: true, // Needed as the test uses iptables and installs the Agent
138141
})
142+
t.Skip("Skipping test temporarily until the DRA with the code that supports windows/arm64 is produced")
139143
testFleetAirGappedUpgrade(t, stack, false)
140144
}
141145

testing/integration/ess/upgrade_gpg_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ func TestStandaloneUpgradeWithGPGFallback(t *testing.T) {
2929
Local: false, // requires Agent installation
3030
Sudo: true, // requires Agent installation
3131
})
32+
t.Skip("Skipping test temporarily until the DRA with the code that supports windows/arm64 is produced")
3233

3334
minVersion := upgradetest.Version_8_10_0_SNAPSHOT
3435
currentVersion, err := version.ParseVersion(define.Version())

0 commit comments

Comments
 (0)