Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdawson committed Aug 9, 2024
1 parent f5a4ab3 commit 5d7e7ee
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/gdext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,29 @@ jobs:
dump_interface:
name: Dump GDExtension API (double)
runs-on: ubuntu-latest
env:
gdver: 4.2.2-stable
steps:
- uses: actions/cache@v4
id: cache
with:
path: gdextension
key: gdextension-api-double-${{ env.gdver }}

- uses: actions/checkout@v4
if: steps.cache.outputs.cache-hit != 'true'
with:
repository: godotengine/godot
ref: 4.2.2-stable
ref: ${{ env.gdver }}

- name: Build
if: steps.cache.outputs.cache-hit != 'true'
run: |
scons precision=double
mkdir gdextension
cd gdextension
../bin/godot.* --headless --dump-extension-api --dump-gdextension-interface
- run: |
pwd
ls -al
build:
needs: [dump_interface]
Expand Down

0 comments on commit 5d7e7ee

Please sign in to comment.