Skip to content

Commit

Permalink
Disable integration tests on ARM due to instability (#4852)
Browse files Browse the repository at this point in the history
The current ARM hardware is experimental and very unstable, we should
wait until a new stable instance type is introduced.
  • Loading branch information
rdner authored Jun 5, 2024
1 parent ecefbfd commit 3500a81
Showing 1 changed file with 29 additions and 26 deletions.
55 changes: 29 additions & 26 deletions pkg/testing/ogc/supported.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,32 +46,35 @@ var ogcSupported = []LayoutOS{
Username: "ubuntu",
RemotePath: "/home/ubuntu/agent",
},
{
OS: define.OS{
Type: define.Linux,
Arch: define.ARM64,
Distro: runner.Ubuntu,
Version: "22.04",
},
Provider: Google,
InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
RunsOn: "ubuntu-2204-lts-arm64",
Username: "ubuntu",
RemotePath: "/home/ubuntu/agent",
},
{
OS: define.OS{
Type: define.Linux,
Arch: define.ARM64,
Distro: runner.Ubuntu,
Version: "20.04",
},
Provider: Google,
InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
RunsOn: "ubuntu-2004-lts-arm64",
Username: "ubuntu",
RemotePath: "/home/ubuntu/agent",
},
// These instance types are experimental on Google Cloud and very unstable
// We will wait until Google introduces new ARM instance types
// https://cloud.google.com/blog/products/compute/introducing-googles-new-arm-based-cpu
// {
// OS: define.OS{
// Type: define.Linux,
// Arch: define.ARM64,
// Distro: runner.Ubuntu,
// Version: "22.04",
// },
// Provider: Google,
// InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
// RunsOn: "ubuntu-2204-lts-arm64",
// Username: "ubuntu",
// RemotePath: "/home/ubuntu/agent",
// },
// {
// OS: define.OS{
// Type: define.Linux,
// Arch: define.ARM64,
// Distro: runner.Ubuntu,
// Version: "20.04",
// },
// Provider: Google,
// InstanceSize: "t2a-standard-4", // 4 arm64 cpus, 16 GB RAM
// RunsOn: "ubuntu-2004-lts-arm64",
// Username: "ubuntu",
// RemotePath: "/home/ubuntu/agent",
// },
{
OS: define.OS{
Type: define.Linux,
Expand Down

0 comments on commit 3500a81

Please sign in to comment.