Skip to content

Commit 3500a81

Browse files
authored
Disable integration tests on ARM due to instability (#4852)
The current ARM hardware is experimental and very unstable, we should wait until a new stable instance type is introduced.
1 parent ecefbfd commit 3500a81

File tree

1 file changed

+29
-26
lines changed

1 file changed

+29
-26
lines changed

pkg/testing/ogc/supported.go

+29-26
Original file line numberDiff line numberDiff line change
@@ -46,32 +46,35 @@ var ogcSupported = []LayoutOS{
4646
Username: "ubuntu",
4747
RemotePath: "/home/ubuntu/agent",
4848
},
49-
{
50-
OS: define.OS{
51-
Type: define.Linux,
52-
Arch: define.ARM64,
53-
Distro: runner.Ubuntu,
54-
Version: "22.04",
55-
},
56-
Provider: Google,
57-
InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
58-
RunsOn: "ubuntu-2204-lts-arm64",
59-
Username: "ubuntu",
60-
RemotePath: "/home/ubuntu/agent",
61-
},
62-
{
63-
OS: define.OS{
64-
Type: define.Linux,
65-
Arch: define.ARM64,
66-
Distro: runner.Ubuntu,
67-
Version: "20.04",
68-
},
69-
Provider: Google,
70-
InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
71-
RunsOn: "ubuntu-2004-lts-arm64",
72-
Username: "ubuntu",
73-
RemotePath: "/home/ubuntu/agent",
74-
},
49+
// These instance types are experimental on Google Cloud and very unstable
50+
// We will wait until Google introduces new ARM instance types
51+
// https://cloud.google.com/blog/products/compute/introducing-googles-new-arm-based-cpu
52+
// {
53+
// OS: define.OS{
54+
// Type: define.Linux,
55+
// Arch: define.ARM64,
56+
// Distro: runner.Ubuntu,
57+
// Version: "22.04",
58+
// },
59+
// Provider: Google,
60+
// InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
61+
// RunsOn: "ubuntu-2204-lts-arm64",
62+
// Username: "ubuntu",
63+
// RemotePath: "/home/ubuntu/agent",
64+
// },
65+
// {
66+
// OS: define.OS{
67+
// Type: define.Linux,
68+
// Arch: define.ARM64,
69+
// Distro: runner.Ubuntu,
70+
// Version: "20.04",
71+
// },
72+
// Provider: Google,
73+
// InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
74+
// RunsOn: "ubuntu-2004-lts-arm64",
75+
// Username: "ubuntu",
76+
// RemotePath: "/home/ubuntu/agent",
77+
// },
7578
{
7679
OS: define.OS{
7780
Type: define.Linux,

0 commit comments

Comments
 (0)