diff --git a/receiver/riakreceiver/integration_test.go b/receiver/riakreceiver/integration_test.go index ea337fd023f4b..fd14da468f7dc 100644 --- a/receiver/riakreceiver/integration_test.go +++ b/receiver/riakreceiver/integration_test.go @@ -10,6 +10,7 @@ import ( "fmt" "net" "path/filepath" + "runtime" "testing" "time" @@ -24,6 +25,9 @@ import ( const riakPort = "8098" func TestIntegration(t *testing.T) { + if runtime.GOARCH == "arm64" { + t.Skip("Incompatible with arm64") + } scraperinttest.NewIntegrationTest( NewFactory(), scraperinttest.WithContainerRequest( diff --git a/receiver/sqlqueryreceiver/integration_test.go b/receiver/sqlqueryreceiver/integration_test.go index 914b3df0f2f57..24edecabac80f 100644 --- a/receiver/sqlqueryreceiver/integration_test.go +++ b/receiver/sqlqueryreceiver/integration_test.go @@ -9,6 +9,7 @@ package sqlqueryreceiver import ( "fmt" "path/filepath" + "runtime" "testing" "time" @@ -134,6 +135,9 @@ func TestPostgresqlIntegration(t *testing.T) { // This test ensures the collector can connect to an Oracle DB, and properly get metrics. It's not intended to // test the receiver itself. func TestOracleDBIntegration(t *testing.T) { + if runtime.GOARCH == "arm64" { + t.Skip("Incompatible with arm64") + } scraperinttest.NewIntegrationTest( NewFactory(), scraperinttest.WithContainerRequest(