summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-09-18 15:29:00 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-09-19 08:37:42 -0500
commit593744b733e7a765c721e93a72419bc44278d69d (patch)
tree1efbd5e07008336ce29c658c35594b7a07d31871 /.github
parent694d3c2930bdfb43fd93e1e6641f66c4f19a5c77 (diff)
downloadredot-engine-593744b733e7a765c721e93a72419bc44278d69d.tar.gz
CI: Improve `godot-cpp` actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/godot_cpp_test.yml53
-rw-r--r--.github/workflows/static_checks.yml4
2 files changed, 28 insertions, 29 deletions
diff --git a/.github/workflows/godot_cpp_test.yml b/.github/workflows/godot_cpp_test.yml
index 61bb0d1d8d..e26c109d75 100644
--- a/.github/workflows/godot_cpp_test.yml
+++ b/.github/workflows/godot_cpp_test.yml
@@ -21,49 +21,44 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
- submodules: recursive
-
- - name: Setup Python and SCons
- uses: ./.github/actions/godot-deps
+ sparse-checkout: .github
- # Checkout godot-cpp
- name: Checkout godot-cpp
uses: actions/checkout@v4
with:
+ submodules: recursive
repository: godotengine/godot-cpp
ref: ${{ env.GODOT_CPP_BRANCH }}
- submodules: recursive
path: godot-cpp
- # Download generated API dump
+ - name: Setup Python and SCons
+ uses: ./.github/actions/godot-deps
+
+ - name: Setup GCC problem matcher
+ uses: ammaraskar/gcc-problem-matcher@master
+
- name: Download GDExtension interface and API dump
uses: ./.github/actions/download-artifact
with:
name: godot-api-dump
- path: ./godot-api
+ path: ./godot-cpp/gdextension
- # Extract and override existing files with generated files
- - name: Extract GDExtension interface and API dump
- run: |
- cp -f godot-api/gdextension_interface.h godot-cpp/gdextension/
- cp -f godot-api/extension_api.json godot-cpp/gdextension/
+ # TODO: Enable caching when godot-cpp has proper cache limiting.
- # TODO: Add caching to the SCons build and store it for CI via the godot-cache
- # action.
+ # - name: Restore Godot build cache
+ # uses: ./.github/actions/godot-cache-restore
+ # with:
+ # cache-name: godot-cpp
+ # continue-on-error: true
- # Build godot-cpp test extension
- name: Build godot-cpp test extension
- run: |
- cd godot-cpp/test
- scons target=template_debug dev_build=yes
- cd ../..
-
- gdextension-c-compile:
- runs-on: 'ubuntu-20.04'
- name: 'Check GDExtension header with a C compiler'
- steps:
- - uses: actions/checkout@v4
+ env: # Keep synced with godot-build.
+ SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
+ SCONS_CACHE_LIMIT: 7168
+ run: scons --directory=./godot-cpp/test target=template_debug dev_build=yes verbose=yes
- - name: 'Run C compiler on gdextension_interface.h'
- run: |
- gcc -c core/extension/gdextension_interface.h
+ # - name: Save Godot build cache
+ # uses: ./.github/actions/godot-cache-save
+ # with:
+ # cache-name: godot-cpp
+ # continue-on-error: true
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml
index 233ab569a2..ff102a06cc 100644
--- a/.github/workflows/static_checks.yml
+++ b/.github/workflows/static_checks.yml
@@ -57,3 +57,7 @@ jobs:
- name: Class reference schema checks
run: |
xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml platform/*/doc_classes/*.xml
+
+ - name: Run C compiler on `gdextension_interface.h`
+ run: |
+ gcc -c core/extension/gdextension_interface.h