From f6d04c8a67446fb2c971f98e580f9fb8e1376d25 Mon Sep 17 00:00:00 2001 From: Simon Stewart Date: Tue, 10 Oct 2023 17:44:15 +0100 Subject: [PATCH] [ci + dotnet] Slim down the .Net CI build since most is already checked by the RBE CI build (#12916) --- .github/workflows/ci-dotnet.yml | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci-dotnet.yml b/.github/workflows/ci-dotnet.yml index f569f3e10a7da..158e8a5680797 100644 --- a/.github/workflows/ci-dotnet.yml +++ b/.github/workflows/ci-dotnet.yml @@ -13,35 +13,16 @@ jobs: cache-key: false os: windows run: | - bazel build //dotnet/src/webdriver - bazel build //dotnet/src/support + bazel build //dotnet:all integration-tests: name: Browser Tests needs: build uses: ./.github/workflows/bazel.yml - strategy: - fail-fast: false - matrix: - driver: - - Chrome - - Firefox - framework: - - net48 - - net6.0 - include: - - driver: Chrome - browser: chrome - - driver: Firefox - browser: chrome with: - name: Browser Tests (${{ matrix.driver }}, ${{ matrix.framework }}) - browser: ${{ matrix.browser }} + name: Browser Tests cache-key: false java-version: 17 os: windows run: | - bazel build //dotnet/test/common:${{ matrix.browser }} - $env:ACTIVE_DRIVER_CONFIG = '${{ matrix.driver }}' - cd dotnet - dotnet test test/common/WebDriver.Common.Tests.csproj --framework ${{ matrix.framework }} + bazel test //dotnet/test/common:ElementFindingTest-firefox //dotnet/test/common:ElementFindingTest-chrome