From b0f9a44cd3906e9cc81ff95e1a1d3281d0160258 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Tue, 24 Jan 2023 16:33:59 +0200 Subject: [PATCH] remove ELECTRON_BUILDER_EXTRA_ARGS Signed-off-by: Jari Kolehmainen --- .github/workflows/test.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 153575366c..380fa3916d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,20 +69,16 @@ jobs: minikube-version: latest if: ${{ runner.os == 'Linux' && matrix.type == 'smoke' }} - - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' yarn run test:integration -- -- $ELECTRON_BUILDER_EXTRA_ARGS + - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' yarn run test:integration name: Run Linux integration tests if: ${{ runner.os == 'Linux' && matrix.type == 'smoke' }} - - run: yarn run test:integration -- -- $ELECTRON_BUILDER_EXTRA_ARGS + - run: yarn run test:integration name: Run macOS integration tests shell: bash - env: - ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --arm64" if: ${{ runner.os == 'macOS' && matrix.type == 'smoke' }} - - run: yarn run test:integration -- -- $ELECTRON_BUILDER_EXTRA_ARGS + - run: yarn run test:integration name: Run Windows integration tests shell: bash - env: - ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --ia32" if: ${{ runner.os == 'Windows' && matrix.type == 'smoke' }}