From ec7069338cd2e8a410c914608133ad1c8e2a7b5f Mon Sep 17 00:00:00 2001 From: kukkok3 <93382903+kukkok3@users.noreply.github.com> Date: Tue, 16 Apr 2024 14:09:08 +0200 Subject: [PATCH] feat: dont test for edge on arm --- catalyst_voices/test_driver/Earthfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catalyst_voices/test_driver/Earthfile b/catalyst_voices/test_driver/Earthfile index 6b240d5da..b68ca8fc4 100644 --- a/catalyst_voices/test_driver/Earthfile +++ b/catalyst_voices/test_driver/Earthfile @@ -2,6 +2,7 @@ VERSION --try --global-cache --arg-scope-and-set 0.7 integration-test-web: FROM ../+build + ARG TARGETARCH ARG browser LET driver_port = 4444 @@ -15,7 +16,7 @@ integration-test-web: # Commenting out Edge tests as they are failing due to: # https://github.com/flutter/flutter/issues/76213 # https://github.com/flutter/flutter/issues/142021 - #IF [ $browser = "edge" ] + #IF [ $browser = "edge" && $TARGETARCH = "amd64" ]] # LET driver = "msedgedriver" #END RUN ($driver --port=$driver_port > $driver.log &) && \