From 165dd13b45aa017a413669ae30ed6d7464e187d2 Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Mon, 2 Dec 2024 16:40:26 -0800 Subject: [PATCH] Revert "Disable linux musl aarch64 test (#125)" (#126) This reverts commit f270bde7653724bb8787c5f03c96d1940ef7cb4d. --- integration/linux/test/linuxmusl-aarch64/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/integration/linux/test/linuxmusl-aarch64/Dockerfile b/integration/linux/test/linuxmusl-aarch64/Dockerfile index 86ca0fd..aba0627 100644 --- a/integration/linux/test/linuxmusl-aarch64/Dockerfile +++ b/integration/linux/test/linuxmusl-aarch64/Dockerfile @@ -164,7 +164,12 @@ adduser -G edgedb -H -D edgedb\n\ if [ "$1" == "bash" ]; then\n\ exec /bin/sh\n\ fi\n\ -\n\' >/entrypoint.sh +\n\ +exec gosu edgedb:edgedb /edgedb/bin/python3 \\\n\ + -m edb.tools --no-devmode test \\\n\ + /edgedb/share/tests \\\n\ + -e cqa_ -e tools_ \\\n\ + --verbose ${dash_j}\n\' >/entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]