Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/full-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ jobs:
- name: "Test"
run: cargo test $GDEXT_FEATURES ${{ matrix.rust-extra-args }}


# For complex matrix workflow, see https://stackoverflow.com/a/65434401
godot-itest:
name: godot-itest (${{ matrix.name }})
Expand Down Expand Up @@ -178,6 +179,13 @@ jobs:
godot-binary: godot.macos.editor.dev.x86_64
#godot-prebuilt-patch: '4.1'

# TODO merge with other jobs
- name: macos-lazy-fptrs
os: macos-12
artifact-name: macos-nightly
godot-binary: godot.macos.editor.dev.x86_64
rust-extra-args: --features godot/lazy-function-tables

# Windows

- name: windows
Expand All @@ -198,6 +206,13 @@ jobs:
godot-binary: godot.windows.editor.dev.x86_64.exe
#godot-prebuilt-patch: '4.1'

# TODO merge with other jobs
- name: windows-lazy-fptrs
os: windows-latest
artifact-name: windows-nightly
godot-binary: godot.windows.editor.dev.x86_64.exe
rust-extra-args: --features godot/lazy-function-tables

# Linux

# Don't use latest Ubuntu (22.04) as it breaks lots of ecosystem compatibility.
Expand All @@ -220,6 +235,13 @@ jobs:
godot-binary: godot.linuxbsd.editor.dev.x86_64
rust-extra-args: --features godot/custom-godot,godot/experimental-threads,godot/serde

# TODO merge with other jobs
- name: linux-lazy-fptrs
os: ubuntu-20.04
artifact-name: linux-nightly
godot-binary: godot.linuxbsd.editor.dev.x86_64
rust-extra-args: --features godot/lazy-function-tables

# Linux compat

- name: linux-4.1.1
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/minimal-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,13 @@ jobs:
godot-binary: godot.linuxbsd.editor.dev.x86_64
rust-extra-args: --features godot/custom-godot,godot/experimental-threads,godot/serde

# TODO merge with other jobs
- name: linux-lazy-fptrs
os: ubuntu-20.04
artifact-name: linux-nightly
godot-binary: godot.linuxbsd.editor.dev.x86_64
rust-extra-args: --features godot/lazy-function-tables

# Linux compat

- name: linux-4.0.4
Expand Down
1 change: 1 addition & 0 deletions godot-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ categories = ["game-engines", "graphics"]
default = ["codegen-fmt"]
codegen-fmt = []
codegen-full = []
codegen-lazy-fptrs = []
double-precision = []
custom-godot = ["godot-bindings/custom-godot"]
experimental-godot-api = []
Expand Down
Loading