Skip to content

Commit

Permalink
tmp: disable other flows
Browse files Browse the repository at this point in the history
Signed-off-by: Mukilan Thiyagarajan <[email protected]>
  • Loading branch information
mukilan committed Sep 11, 2024
1 parent 4b2e848 commit bd23afd
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand All @@ -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
Expand Down

0 comments on commit bd23afd

Please sign in to comment.