From 8b54e6941c020adbf1a04b4063507bf724d0d059 Mon Sep 17 00:00:00 2001 From: "VL.Y" <1560781+vladimiry@users.noreply.github.com> Date: Mon, 18 Sep 2023 02:31:30 +0300 Subject: [PATCH] github actions ci: temporary disable e2e tests for "macos" system --- scripts/ci/github/package-app-osx.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/ci/github/package-app-osx.sh b/scripts/ci/github/package-app-osx.sh index a202939d1..87072608a 100755 --- a/scripts/ci/github/package-app-osx.sh +++ b/scripts/ci/github/package-app-osx.sh @@ -14,9 +14,11 @@ echo "::endgroup::" echo "::group::test e2e" # TODO arm64: enable e2e tests running for darwin-arm64 build, see the blocker https://github.com/actions/virtual-environments/issues/2187 -if [[ ${ARCH} == "x64" ]]; then - pnpm run test:e2e -fi +# TODO get back e2e test on macos-x64 system +# disabled since previously successful/released tags and new ones too started to get "electron.launch: Process failed to launch!" error on "github actions ci" +#if [[ ${ARCH} == "x64" ]]; then +# pnpm run test:e2e +#fi echo "::endgroup::" echo "::group::package"