mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 09:42:25 +00:00
disable ldap tests for arm (#23118)
This commit is contained in:
3
changelog/23118.txt
Normal file
3
changelog/23118.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
```release-note:bug
|
||||||
|
ldaputil: Disable tests for ARM64
|
||||||
|
```
|
||||||
@@ -6,6 +6,8 @@ package ldap
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"runtime"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/hashicorp/cap/ldap"
|
"github.com/hashicorp/cap/ldap"
|
||||||
@@ -15,6 +17,12 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func PrepareTestContainer(t *testing.T, version string) (cleanup func(), cfg *ldaputil.ConfigEntry) {
|
func PrepareTestContainer(t *testing.T, version string) (cleanup func(), cfg *ldaputil.ConfigEntry) {
|
||||||
|
// note: this image isn't supported on arm64 architecture in CI.
|
||||||
|
// but if you're running on Apple Silicon, feel free to comment out the code below locally.
|
||||||
|
if strings.Contains(runtime.GOARCH, "arm") {
|
||||||
|
t.Skip("Skipping, as this image is not supported on ARM architectures")
|
||||||
|
}
|
||||||
|
|
||||||
runner, err := docker.NewServiceRunner(docker.RunOptions{
|
runner, err := docker.NewServiceRunner(docker.RunOptions{
|
||||||
// Currently set to "michelvocks" until https://github.com/rroemhild/docker-test-openldap/pull/14
|
// Currently set to "michelvocks" until https://github.com/rroemhild/docker-test-openldap/pull/14
|
||||||
// has been merged.
|
// has been merged.
|
||||||
|
|||||||
Reference in New Issue
Block a user