summaryrefslogtreecommitdiffstats
path: root/.github/workflows
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove buggy first interactionAdam Scott2024-04-051-35/+0
|
* Fix first interaction line breaksAdam Scott2024-04-041-17/+4
|
* Add first interaction action to better inform newcomersAdam Scott2024-04-041-0/+48
|
* [CI] Improve fetching of changed filesA Thousand Ships2024-03-281-1/+1
| | | | | | PRs always use a merge into the repo on checkout, so checking for `HEAD^1` will show all the changes regardless of the number of commits in a PR
* [CI] Work around diff size limit for static checksA Thousand Ships2024-03-271-1/+1
|
* CI: Enable submodules on the checkout actionAaron Franke2024-03-157-0/+14
|
* Merge pull request #88671 from akien-mga/ci-actions-updateRémi Verschelde2024-03-062-7/+1
|\ | | | | | | CI: Update actions to latest versions, use default runner .NET version
| * CI: Update actions to latest versions, use default runner .NET versionRémi Verschelde2024-02-222-7/+1
| |
* | Move dotnet-format script to pre-commitRaul Santos2024-03-021-8/+0
| | | | | | | | Co-authored-by: Paul Joannon <437025+paulloz@users.noreply.github.com>
* | Replace hand-written pre-commit hooks with `pre-commit` Python toolAarni Koskela2024-02-261-15/+4
| | | | | | | | | | | | | | | | | | | | | | `pre-commit` can be installed with pip, and configured in the Godot repo with `pre-commit install`. It can then easily be run both locally with `pre-commit run`, and on CI, in a cross-platform way. This makes it much easier for contributors to set up pre-commit hooks, without having to manually copy files to their git folder. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* | Fix lint errors in WebXR moduleDavid Snopek2024-02-231-1/+1
| |
* | Use godot-cpp 4.2 for the "Godot CPP" CI workflowDavid Snopek2024-02-231-1/+1
|/
* C#: Run source generators tests in CIRaul Santos2024-02-191-0/+5
| | | | Also fixes ScriptPathAttributeGenerator for generic types and its test.
* Add new VS proj generation logic that supports any platform that wants to opt inAndreia Gaita2024-01-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Custom Visual Studio project generation logic that supports any platform that has a msvs.py script, so Visual Studio can be used to run scons for any platform, with the right defines per target. Invoked with `scons vsproj=yes` To generate build configuration files for all platforms+targets+arch combinations, users should call ``` scons vsproj=yes platform=XXX target=YYY [other build flags] ``` for each combination of platform+target[+arch]. This will generate the relevant vs project files but skip the build process, so that project files can be quickly generated without waiting for a command line build. This lets project files be quickly generated even if there are build errors. All possible combinations of platform+target are created in the solution file by default, but they won't do anything until each one is set up with a scons vsproj=yes command for the respective platform in the appropriate command line. This lets users only generate the combinations they need, and VS won't have to parse settings for other combos. Only platforms that opt in to vs proj generation by having a msvs.py file in the platform folder are included. Platforms with a msvs.py file will be added to the solution, but only the current active platform+target+arch will have a build configuration generated, because we only know what the right defines/includes/flags/etc are on the active build target currently being processed by scons. Platforms that don't support an editor target will have a dummy editor target that won't do anything on build, but will have the files and configuration for the windows editor target. To generate AND build from the command line, run ``` scons vsproj=yes vsproj_gen_only=no ```
* Add Wayland supportRiteo2024-01-301-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not everything is yet implemented, either for Godot or personal limitations (I don't have all hardware in the world). A brief list of the most important issues follows: - Single-window only: the `DisplayServer` API doesn't expose enough information for properly creating XDG shell windows. - Very dumb rendering loop: this is very complicated, just know that the low consumption mode is forced to 2000 Hz and some clever hacks are in place to overcome a specific Wayland limitation. This will be improved to the extent possible both downstream and upstream. - Features to implement yet: IME, touch input, native file dialog, drawing tablet (commented out due to a refactor), screen recording. - Mouse passthrough can't be implement through a poly API, we need a rect-based one. - The cursor doesn't yet support fractional scaling. - Auto scale is rounded up when using fractional scaling as we don't have a per-window scale query API (basically we need `DisplayServer::window_get_scale`). - Building with `x11=no wayland=yes opengl=yes openxr=yes` fails. This also adds a new project property and editor setting for selecting the default DisplayServer to start, to allow this backend to start first in exported projects (X11 is still the default for now). The editor setting always overrides the project setting. Special thanks to Drew Devault, toger5, Sebastian Krzyszkowiak, Leandro Benedet Garcia, Subhransu, Yury Zhuravlev and Mara Huldra.
* Merge pull request #86717 from mrbbbaixue/d3d12-sdk-install-pythonRémi Verschelde2024-01-261-22/+3
|\ | | | | | | Add a python script to install Direct3D 12 SDK components.
| * Add a python script to install Direct3D 12 SDK components.MrBBBaiXue2024-01-241-22/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it much faster to get started with Direct3D 12 builds, as you only need to run `python .\misc\scripts\install_d3d12_sdk_windows.py` then run `scons d3d12=yes`. This installs DirectX Shader Compiler, Mesa NIR, WinPixEventRuntime and DirectX 12 Agility SDK. - Define a default path that uses the locations from the script. - Now the default path is in "%LOCALAPPDATA%\Godot\build_deps\" - Updated CI to use this new python script. Co-Authored-By: Hugo Locurcio <hugo.locurcio@hugo.pro>
* | CI: Update mymindstorm/setup-emsdk to v14, should fix cache folder conflictsRémi Verschelde2024-01-251-1/+2
|/ | | | | | https://github.com/mymindstorm/setup-emsdk/releases/tag/v14 Co-authored-by: Yuri Sizov <yuris@humnom.net>
* Add THREADS_ENABLED macro in order to compile Godot to run on the main threadAdam Scott2024-01-171-4/+26
|
* Add Direct3D 12 RenderingDevice implementationPedro J. Estébanez2023-12-121-1/+23
|
* Fix various typos with codespellRémi Verschelde2023-11-111-1/+1
| | | | Using 2.2.7.dev51+geb4a58fe.
* CI: Pin Emscripten to 3.1.39Rémi Verschelde2023-11-101-1/+1
| | | | | | Due to #82865, newer versions can't be used for dlink-enabled Web builds. This isn't a problem for CI which doesn't use dlink, but it's clearer for users if our CI version matches the one we use for official builds.
* Use colored output on CI for DoctestHugo Locurcio2023-10-283-3/+3
| | | | | GitHub Actions output is not considered a TTY, so colored output must be forced.
* Bump the java version to version 17Fredia Huya-Kouadio2023-10-171-2/+2
|
* CI: Workaround recently broken add-apt-repository on GHARémi Verschelde2023-10-121-1/+2
| | | | Hopefully adding the sources manually still works.
* CI: Switch mesa PPA from kisak-mesa to turtleRémi Verschelde2023-10-111-1/+1
| | | | May solve a weird name clash we seem to have on CI since yesterday.
* Web: Workaround Emscripten 3.1.42+ LTO regressionRémi Verschelde2023-09-051-2/+2
| | | | Fixes #80010.
* CI: Bump version for `actions/checkout@v4` and `actions/setup-dotnet@v3`Rémi Verschelde2023-09-048-10/+10
|
* Use godot-cpp 4.1 for the "Godot CPP" CI workflow to prevent circular dependencyDavid Snopek2023-09-011-2/+4
|
* Merge pull request #78908 from zorbathut/pr_gitignoreRémi Verschelde2023-08-291-0/+5
|\ | | | | | | Add static check for overzealous .gitignores and fix an example of such.
| * Add static check for overzealous .gitignores.Ben Rog-Wilhelm2023-07-011-0/+5
| |
* | CI: Propagated error code when glue generation failsRémi Verschelde2023-08-211-1/+1
| | | | | | This used to be ignored as we ran the X11 version with Vulkan software renderer and xvfb-run, which could crash at the time. Now that we have headless mode, this is not a problem anymore.
* | Merge pull request #73777 from myaaaaaaaaa/enable-tsanYuri Sizov2023-08-041-0/+11
|\ \ | | | | | | Add a Linux ThreadSanitizer job to CI
| * | Add a Linux ThreadSanitizer job to CImyaaaaaaaaa2023-06-261-0/+11
| |/
* | CI: Make extension API compatibility check mandatoryRémi Verschelde2023-08-031-1/+1
| | | | | | | | | | | | | | | | This means that any PR which breaks the extension API should handle it properly, that is: - Add compatibility methods to ensure that existing function hashes work - Document the changes in the relevant misc/extension_api_validation/ file
* | CI: Allow skipping our GHA workflows with `DISABLE_GODOT_CI` variableRémi Verschelde2023-08-021-0/+8
| | | | | | | | | | | | | | | | Useful for custom forks of Godot which don't want to run our CI for any reason. This is configured in `settings/variables/actions` for the repository, setting it to any value aside from an empty string will skip all jobs.
* | CI: Extract godot-cpp testing into its own jobYuri Sizov2023-08-015-103/+128
| | | | | | | | | | | | | | | | | | | | This ensures that the godot-cpp job has plenty of resources to run its build and avoid being affected by the main build. Additionally: - Extract test tasks into dedicated actions. - Upload artifacts as early as possible. - Ensure that we check master cache before random cache.
* | CI: Free disk space on Linux runnersRémi Verschelde2023-08-011-0/+6
| | | | | | | | | | | | | | | | | | | | | | Removing the Android toolchain saves 14 GiB, which gives us more room for growth and to avoid running into out-of-space errors in the Linux sanitizers + debug symbols builds. Related to #79919, though the caches were just one part of the problem, the real issue is that our Linux sanitizers builds take 12 GiB, and adding godot-cpp on top with 2 GiB leaves only a few GiB left for the cache itself.
* | Fix `doc_status.py` trying to get removed `version` tag from XMLHugo Locurcio2023-07-131-0/+1
|/ | | | This also runs `doc_status.py` on CI to catch potential future regressions.
* CI: Use SCU build for Linux w/ sanitizers buildRémi Verschelde2023-06-201-2/+2
| | | | | | | | | | It's the slowest build so a speedup from SCU is welcome. The other purpose of this change is to actually catch global scope conflicts which would break the SCU build. SCU builds have drawbacks as they won't fully validate that the includes are correct, but we should have enough other builds in the CI build matrix to catch this type of bug.
* CI: Update static checks to black 23.3.0Rémi Verschelde2023-06-191-1/+1
| | | | And apply it to the codebase, removing empty lines at the start of blocks.
* Fix various typos with codespellRémi Verschelde2023-06-161-2/+2
| | | | And ignore some false positives introduced by recent versions of codespell.
* Allow validating the extension api against a reference version and a list of ↵RedworkDE2023-05-191-0/+6
| | | | known changes.
* CI: Use GODOT_BASE_BRANCH for the godot-cpp checkoutRémi Verschelde2023-05-186-6/+7
|
* Merge pull request #76887 from RedworkDE/ci-fix-windows-unit-testsRémi Verschelde2023-05-151-1/+1
|\ | | | | CI: Fix running the unit tests on windows
| * CI: Fix running the unit tests on windowsRedworkDE2023-05-101-1/+1
| |
* | CI: Skip codespell check if `CHANGED_FILES` is emptyRémi Verschelde2023-05-101-2/+2
|/ | | | | This can happen when only thirdparty files are changed, since we grep them out. Re-add `bin` and `thirdparty` to the skip list for good measure.
* CI: Use gh-cli for changed files, and workaround codespell skip list bugRémi Verschelde2023-05-081-5/+6
| | | | | | | | | For PRs, this should give a more accurate list, as the previous method would diff to the tip of the `master` branch, which could include new commits (and thus changed files) not present in the PR branch. codespell's `--skip` option doesn't work at all with folders when used together with an explicit list of paths to work with, so let's not use it.
* CI: Make codespell checks blocking, but only check changed filesRémi Verschelde2023-05-081-2/+5
|
* Create an "Editor-only" section in the online class referenceYuri Sizov2023-04-241-1/+1
| | | | | | | | | This helps to find such classes without digging through the rest of the class reference. Editor-only classes can still be found under your normal "Node" and "Resource" types. This also fixes a typo and a missed case from the recent platform docs PR.