Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Conversion to Godot 4.2 #75

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
adf9a90
Perform minimally viable conversion to Godot 4.1.1
ephread Aug 29, 2023
e82f97c
Update CI configuration
ephread Sep 10, 2023
87e6947
Update documentation and add flag preventing template registration
ephread Sep 13, 2023
470c734
Fix Godot 4.2 compilation error
ephread Oct 23, 2023
3128681
Update README.md
ephread Oct 23, 2023
06da2d3
Migrate C# glue to Godot 4
ephread Oct 26, 2023
e634159
Fix broken test
ephread Dec 8, 2023
8e94d01
Rename more files
ephread Dec 8, 2023
f47dae1
Migrate NativeFunctionCall node to static calls
ephread Dec 8, 2023
56b01d7
Migrate StaticJSON node to static calls
ephread Dec 8, 2023
9e3e9d8
Bump GUT to 9.1.1
ephread Dec 8, 2023
34537bd
Update copyrights and README
ephread Dec 8, 2023
88441d6
Fix C# tests
ephread Dec 9, 2023
c71f215
Work around C# issue
ephread Jan 26, 2024
7a8d3ab
Re-enable C# CI job
ephread Jan 26, 2024
7a516dd
Fix Godot executable path
ephread Jan 26, 2024
377fa66
Fix Godot executable paths
ephread Jan 26, 2024
b79ac28
Fix Godot executable path
ephread Jan 26, 2024
ffaee6a
Fix Godot executable path
ephread Jan 26, 2024
fd7da7f
Fix ink download path
ephread Jan 26, 2024
bfaea48
Update csproj version to match the given version
ephread Jan 26, 2024
cd67b72
Fix syntax error
ephread Jan 26, 2024
bdb2a94
Install dependencies
ephread Jan 26, 2024
c7755ba
Ensure script executes in the correct directory
ephread Jan 26, 2024
ade0625
Add missing environment
ephread Jan 26, 2024
3c7eb9e
Update MSBuild command
ephread Jan 26, 2024
50e1f6f
Reimport assets in mono steps as well
ephread Jan 26, 2024
c392e18
Update matrix
ephread Jan 26, 2024
3536ebf
Fix typo in CI configuration file
ephread Jan 26, 2024
bd7f4c1
Switch import step
ephread Jan 26, 2024
fea9098
Re-enable inkgd plugin
ephread Jan 28, 2024
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
Prev Previous commit
Next Next commit
Ensure script executes in the correct directory
  • Loading branch information
ephread committed Jan 26, 2024
commit c7755ba002e51001b6638555702686b083bf66e7
4 changes: 4 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,16 @@ jobs:
SEMANTIC_VERSION="$VERSION.0"
fi

cd inkgd

xmllint --shell inkgd.csproj <<EOF
cd /Project/@Sdk
set Godot.NET.Sdk/${SEMANTIC_VERSION}
save
EOF

cd ..

- name: "(Mono) Compile C# solution"
run: |
./godot_mono/godot_mono --headless --quit --path "inkgd"
Expand Down