Skip to content

Commit

Permalink
DO NOT MERGE: skipping the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronFriel committed Dec 13, 2022
1 parent 9f9560c commit ed22426
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -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) }}
Expand All @@ -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) }}
Expand All @@ -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') }}
Expand All @@ -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
Expand Down

0 comments on commit ed22426

Please sign in to comment.