Revert "Skip redundant PR workflows"

This reverts commit ea78271129.
This commit is contained in:
momo5502
2026-01-01 11:37:06 +01:00
parent ea78271129
commit 9a7b9e553d

View File

@@ -30,7 +30,6 @@ concurrency:
jobs:
clang-tidy:
name: Run Clang Tidy
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ubuntu-24.04
env:
LLVM_VERSION: 21
@@ -65,7 +64,6 @@ jobs:
verify-formatting:
name: Verify Formatting
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ubuntu-24.04
steps:
- name: Checkout Source
@@ -81,7 +79,6 @@ jobs:
build-apiset-dumper:
name: Build API Set Dumper
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: windows-latest
steps:
- name: Checkout Source
@@ -108,7 +105,6 @@ jobs:
create-emulation-root:
name: Create Emulation Root
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ${{ matrix.runner }}
needs: [build-apiset-dumper]
strategy:
@@ -160,7 +156,6 @@ jobs:
build:
name: Build
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
@@ -316,7 +311,6 @@ jobs:
# waiting for other platforms
build-isolate:
name: Build Isolate
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
@@ -369,7 +363,6 @@ jobs:
test:
name: Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ${{ matrix.runner }}
needs: [create-emulation-root, build]
strategy:
@@ -463,7 +456,6 @@ jobs:
win-test:
name: Windows Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: windows-latest
needs: [create-emulation-root, build-isolate]
strategy:
@@ -527,7 +519,6 @@ jobs:
smoke-test-node:
name: Smoke Test Node.js
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ubuntu-24.04
needs: [create-emulation-root, build]
steps:
@@ -560,7 +551,6 @@ jobs:
smoke-test-mingw:
name: Smoke Test MinGW x86_64
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: windows-latest
needs: [create-emulation-root, build]
steps:
@@ -587,7 +577,6 @@ jobs:
smoke-test-android:
name: Smoke Test Android
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ${{ matrix.runner }}
needs: [create-emulation-root, build]
strategy:
@@ -653,7 +642,6 @@ jobs:
build-page:
name: Build Page
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository }}
runs-on: ubuntu-latest
needs: [create-emulation-root, build]
steps:
@@ -758,7 +746,7 @@ jobs:
win-test,
verify-formatting,
]
if: ${{ always() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository) }}
if: always()
steps:
- uses: geekyeggo/delete-artifact@v5
continue-on-error: true