forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Fully sync workflows and actions with 3.x branch
- Loading branch information
Showing
33 changed files
with
375 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Save Godot build cache | ||
description: Save Godot build cache. | ||
inputs: | ||
cache-name: | ||
description: The cache base name (job name by default). | ||
default: "${{github.job}}" | ||
scons-cache: | ||
description: The scons cache path. | ||
default: "${{github.workspace}}/.scons-cache/" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Save .scons_cache directory | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: ${{inputs.scons-cache}} | ||
key: ${{inputs.cache-name}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.