Closed
Description
Hi there,
thanks for the great work in the first place, we were using embedded Postgres for a while now.
Now I switched to a MacBook Pro with the new M1 SoC which has arm64 architecture.
I debugged DefaultPostgresBinaryResolver#getPgBinary
and the line
Resource resource = findPgBinary(normalize(format("postgres-%s-%s.txz", system, architecture)));
does not find any binary because it is searching for postgres-darwin-arm_64.txz
which I didn't find in https://mvnrepository.com/artifact/io.zonky.test.postgres
I assume there will be no release of Postgres for Darwin arm64 soon so is there a way to load the Darwin-amd64 embedded Postgres?
Dependencies we use:
compile("io.zonky.test:embedded-database-spring-test:1.6.1")
dependencyManagement {
imports {
mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:9.6.16'
}
}
Thanks