From bd23afda39b90d3fb3d5a2a64e9bce1c97b6c32b Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Wed, 11 Sep 2024 14:36:30 +0530 Subject: [PATCH] tmp: disable other flows Signed-off-by: Mukilan Thiyagarajan --- .github/workflows/main.yml | 80 +++++++++++++++++++------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 446d4f36ef3e1..e56b926c597fd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,43 +14,43 @@ on: workflow_dispatch: jobs: - build-win: - name: Windows - if: ${{ github.event_name != 'pull_request' }} - uses: ./.github/workflows/windows.yml - with: - unit-tests: true - secrets: inherit - - build-mac: - name: Mac - if: ${{ github.event_name != 'pull_request' }} - uses: ./.github/workflows/mac.yml - with: - unit-tests: true - secrets: inherit + # build-win: + # name: Windows + # if: ${{ github.event_name != 'pull_request' }} + # uses: ./.github/workflows/windows.yml + # with: + # unit-tests: true + # secrets: inherit + # + # build-mac: + # name: Mac + # if: ${{ github.event_name != 'pull_request' }} + # uses: ./.github/workflows/mac.yml + # with: + # unit-tests: true + # secrets: inherit + # + # build-linux: + # name: Linux + # uses: ./.github/workflows/linux.yml + # with: + # unit-tests: true + # wpt-layout: ${{ github.event_name == 'pull_request' && 'none' || '2020' }} + # secrets: inherit - build-linux: - name: Linux - uses: ./.github/workflows/linux.yml - with: - unit-tests: true - wpt-layout: ${{ github.event_name == 'pull_request' && 'none' || '2020' }} - secrets: inherit - - lint: - name: Lint - uses: ./.github/workflows/lint.yml - secrets: inherit - - build-android: - name: Android - if: ${{ github.event_name != 'pull_request' }} - uses: ./.github/workflows/android.yml - with: - profile: "release" - secrets: inherit + # lint: + # name: Lint + # uses: ./.github/workflows/lint.yml + # secrets: inherit + # build-android: + # name: Android + # if: ${{ github.event_name != 'pull_request' }} + # uses: ./.github/workflows/android.yml + # with: + # profile: "release" + # secrets: inherit + # build-ohos: name: OpenHarmony if: ${{ github.event_name != 'pull_request' }} @@ -64,12 +64,12 @@ jobs: if: always() # needs all build to detect cancellation needs: - - "build-win" - - "build-mac" - - "build-linux" - - "build-android" + # - "build-win" + # - "build-mac" + # - "build-linux" + # - "build-android" - "build-ohos" - - "lint" + # - "lint" steps: - name: Merge build timings uses: actions/upload-artifact/merge@v4