diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh index 3f7077807df6644ff25b558ae06b7c89ed72172c..4fb5accba567f515e98f51df4c6446f937266771 100755 --- a/Build/Scripts/runTests.sh +++ b/Build/Scripts/runTests.sh @@ -36,6 +36,7 @@ setUpDockerComposeDotEnv() { echo "PHP_VERSION=${PHP_VERSION}" echo "CHUNKS=${CHUNKS}" echo "THISCHUNK=${THISCHUNK}" + echo "DOCKER_SELENIUM_IMAGE=${DOCKER_SELENIUM_IMAGE}" } > .env } @@ -329,6 +330,16 @@ MYSQL_VERSION="8.0" POSTGRES_VERSION="10" CHUNKS=0 THISCHUNK=0 +DOCKER_SELENIUM_IMAGE="selenium/standalone-chrome:4.0.0-20211102" + +# Detect arm64 and use a seleniarm image. +# In a perfect world selenium would have a arm64 integrated, but that is not on the horizon. +# So for the time being we have to use seleniarm image. +ARCH=$(uname -m) +if [ $ARCH = "arm64" ]; then + DOCKER_SELENIUM_IMAGE="seleniarm/standalone-chromium:4.1.2-20220227" + echo "Architecture" $ARCH "requires" $DOCKER_SELENIUM_IMAGE "to run acceptance tests." +fi # Option parsing # Reset in case getopts has been used previously in the shell diff --git a/Build/testing-docker/local/docker-compose.yml b/Build/testing-docker/local/docker-compose.yml index 78e50769524e0b47ca2167ab724f5d7affa46cad..992026dbf30093a3692a83d0560471daf11f1d6b 100644 --- a/Build/testing-docker/local/docker-compose.yml +++ b/Build/testing-docker/local/docker-compose.yml @@ -1,7 +1,7 @@ version: '2.3' services: chrome: - image: selenium/standalone-chrome:4.0.0-20211102 + image: ${DOCKER_SELENIUM_IMAGE} tmpfs: - /dev/shm:rw,nosuid,nodev,noexec,relatime