forked from godotengine/godot-cpp
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56571dc
commit 05bc9ea
Showing
29 changed files
with
1,429 additions
and
554 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
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,21 @@ | ||
name: 🔗 GHA | ||
on: [push, pull_request, merge_group] | ||
|
||
concurrency: | ||
group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-runner | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# First stage: Only static checks, fast and prevent expensive builds from running. | ||
|
||
static-checks: | ||
if: '!vars.DISABLE_GODOT_CI' | ||
name: 📊 Static Checks | ||
uses: ./.github/workflows/static_checks.yml | ||
|
||
# Second stage: Run all the builds and some of the tests. | ||
|
||
ci: | ||
name: 🛠️ Continuous Integration | ||
needs: static-checks | ||
uses: ./.github/workflows/ci.yml |
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 |
---|---|---|
|
@@ -198,4 +198,7 @@ venv | |
|
||
# Clion Configuration | ||
.idea/ | ||
cmake-build-* | ||
cmake-build*/ | ||
|
||
# CMake related | ||
CMakeUserPresets.json |
Oops, something went wrong.