diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f95a79e13646..78fd9bf06dbe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -243,7 +243,7 @@ jobs: # CI / Unit Test / sdk/dotnet dotnet_test on macos-11/current name: Unit Test${{ matrix.platform && '' }} needs: [matrix] - if: ${{ needs.matrix.outputs.unit-test-matrix != '{}' }} + if: false strategy: fail-fast: ${{ contains(needs.matrix.outputs.unit-test-matrix, 'macos') }} matrix: ${{ fromJson(needs.matrix.outputs.unit-test-matrix) }} @@ -268,7 +268,7 @@ jobs: # appearing in the rendered title of the job name. See: unit test. name: Integration Test${{ matrix.platform && '' }} needs: [matrix, build-binaries, build-sdks] - if: ${{ needs.matrix.outputs.integration-test-matrix != '{}' }} + if: false strategy: fail-fast: ${{ contains(needs.matrix.outputs.integration-test-matrix, 'macos') }} matrix: ${{ fromJson(needs.matrix.outputs.integration-test-matrix) }} @@ -293,7 +293,7 @@ jobs: # appearing in the rendered title of the job name. See: unit test. name: Smoke Test${{ matrix.platform && '' }} needs: [matrix, build-binaries, build-sdks] - if: ${{ needs.matrix.outputs.smoke-test-matrix != '{}' }} + if: false # alow jobs to fail if the platform contains windows strategy: fail-fast: ${{ contains(needs.matrix.outputs.smoke-test-matrix, 'macos') }} @@ -316,7 +316,7 @@ jobs: test-collect-reports: needs: [unit-test, integration-test, smoke-test] - if: ${{ always() }} + if: false runs-on: ubuntu-latest steps: - uses: actions/cache@v3