ci: wait for static check results before starting builds
(cherry picked from commit 93b7bcb33d
)
This commit is contained in:
parent
c269e9243b
commit
886cc22e9b
3
.github/workflows/android_builds.yml
vendored
3
.github/workflows/android_builds.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: 🤖 Android Builds
|
name: 🤖 Android Builds
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
3
.github/workflows/ios_builds.yml
vendored
3
.github/workflows/ios_builds.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: 🍏 iOS Builds
|
name: 🍏 iOS Builds
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
3
.github/workflows/javascript_builds.yml
vendored
3
.github/workflows/javascript_builds.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: 🌐 JavaScript Builds
|
name: 🌐 JavaScript Builds
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
3
.github/workflows/linux_builds.yml
vendored
3
.github/workflows/linux_builds.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: 🐧 Linux Builds
|
name: 🐧 Linux Builds
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
3
.github/workflows/macos_builds.yml
vendored
3
.github/workflows/macos_builds.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: 🍎 macOS Builds
|
name: 🍎 macOS Builds
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
46
.github/workflows/runner.yml
vendored
Normal file
46
.github/workflows/runner.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
name: 🔗 GHA
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-runner
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
static-checks:
|
||||||
|
name: 📊 Static
|
||||||
|
uses: ./.github/workflows/static_checks.yml
|
||||||
|
|
||||||
|
android-build:
|
||||||
|
name: 🤖 Android
|
||||||
|
needs: static-checks
|
||||||
|
uses: ./.github/workflows/android_builds.yml
|
||||||
|
|
||||||
|
ios-build:
|
||||||
|
name: 🍏 iOS
|
||||||
|
needs: static-checks
|
||||||
|
uses: ./.github/workflows/ios_builds.yml
|
||||||
|
|
||||||
|
javascript-build:
|
||||||
|
name: 🌐 JavaScript
|
||||||
|
needs: static-checks
|
||||||
|
uses: ./.github/workflows/javascript_builds.yml
|
||||||
|
|
||||||
|
linux-build:
|
||||||
|
name: 🐧 Linux
|
||||||
|
needs: static-checks
|
||||||
|
uses: ./.github/workflows/linux_builds.yml
|
||||||
|
|
||||||
|
macos-build:
|
||||||
|
name: 🍎 macOS
|
||||||
|
needs: static-checks
|
||||||
|
uses: ./.github/workflows/macos_builds.yml
|
||||||
|
|
||||||
|
server-build:
|
||||||
|
name: ☁ Server
|
||||||
|
needs: static-checks
|
||||||
|
uses: ./.github/workflows/server_builds.yml
|
||||||
|
|
||||||
|
windows-build:
|
||||||
|
name: 🏁 Windows
|
||||||
|
needs: static-checks
|
||||||
|
uses: ./.github/workflows/windows_builds.yml
|
3
.github/workflows/server_builds.yml
vendored
3
.github/workflows/server_builds.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: ☁ Server Builds
|
name: ☁ Server Builds
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
env:
|
env:
|
||||||
|
3
.github/workflows/static_checks.yml
vendored
3
.github/workflows/static_checks.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: 📊 Static Checks
|
name: 📊 Static Checks
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
|
||||||
|
3
.github/workflows/windows_builds.yml
vendored
3
.github/workflows/windows_builds.yml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: 🏁 Windows Builds
|
name: 🏁 Windows Builds
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
# Global Settings
|
# Global Settings
|
||||||
# SCONS_CACHE for windows must be set in the build environment
|
# SCONS_CACHE for windows must be set in the build environment
|
||||||
|
Loading…
Reference in New Issue
Block a user