Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-02 | Fix exit code of --help and --version, and test them in CI | Jan Haller | |
Corrects prior regression which caused ERROR output and exit code of 1. | |||
2022-03-30 | CI: Reduce max cache to 7 GiB, remove Windows debug symbols | Rémi Verschelde | |
GitHub Actions runners only have 14 GiB available, so we need to keep the cache constrained. | |||
2022-03-28 | CI: Limit Windows cache size again, otherwise we run out of space | Rémi Verschelde | |
And force a full rebuild as the cache is now broken. | |||
2022-03-23 | CI: Update to actions/cache@v3, increase cache limit to 10 GiB | Rémi Verschelde | |
And force rebuild of Linux cache which got corrupted... | |||
2021-09-22 | CI: Build test binaries with debug symbols, then strip | Rémi Verschelde | |
This allows having good stacktraces when the tests crash. | |||
2021-09-14 | [CI] Refactor CI actions, use sub-actions, matrices. | Fabio Alessandrelli | |
2021-08-25 | Fix CI after concurrency | Max Hilbrunner | |
2021-08-25 | CI: Cancel previous builds if new commit is pushed | Max Hilbrunner | |
2021-08-18 | Fix github actions cache server being down failing builds | Gordon MacPherson | |
2021-05-19 | pywin32 is no longer necessary for SCons install | Bartłomiej T. Listwon | |
https://github.com/SCons/scons/releases/tag/4.1.0 | |||
2021-02-22 | CI: Build without debug symbols to reduce cache size | Rémi Verschelde | |
We often hit "Too Many Requests" errors when uploading the cache with `actions/cache` because there's a limit of 10 GB every 5 minutes, and we can easily go over it when we amend or merge several PRs in a short timespan. This will make the CI artifacts less useful for debugging crashes but there's no real way around this. | |||
2021-02-13 | Use github actions cache not my own one. | Gordon MacPherson | |
2020-12-29 | CI: Force building TextServer fallback | Rémi Verschelde | |
It's normally opt-in as the advanced one (CTL support) is the default, but we need to build it to catch potential build issues. | |||
2020-12-04 | CI: Shrink Windows cache to 3GB, we run out of disk space | Rémi Verschelde | |
2020-10-22 | CI: Set debug_symbols=no for template builds | Rémi Verschelde | |
This keeps their size small and allows to compare size changes on templates in PRs, as the template size is what is most relevant to users. For editor builds we keep debug symbols so they can be used to debug crashes. | |||
2020-10-16 | CI: Refactor build workflows to use `SCONSFLAGS` | Andrii Doroshenko (Xrayez) | |
2020-10-15 | CI: upload artifacts | umarcor | |
Set retention-days of all artifacts to 14. | |||
2020-10-15 | CI: List contents of bin/ after build | Rémi Verschelde | |
This can be used to compare impacts on the generated files and especially their size in PRs. | |||
2020-08-23 | GitHub Actions: Prepend emoji to platform names for easy visual grepping | Hugo Locurcio | |
2020-07-30 | CI: Show `tests=yes` for builds which run tests | Andrii Doroshenko (Xrayez) | |
2020-07-25 | SCons: Add `tests` option to enable or disable unit tests | Andrii Doroshenko (Xrayez) | |
2020-07-24 | t Add unit testing to Godot using DocTest and added to GitHub Actions CI | RevoluPowered | |
Implements exit codes into the engine so tests can return their statuses. Ideally we don't do this, and we use FIXUP logic to 'begin' and 'end' the engine execution for tests specifically. Since realistically we're initialising the engine here we don't want to do that, since String should not require an engine startup to test a single header. This lowers the complexity of running the unit tests and even for physics should be possible to implement such a fix. | |||
2020-07-24 | CI: Fix cache key and include base branch | Rémi Verschelde | |
The base branch is hardcoded as an env variable as I couldn't find a simple way to just get either `3.2` or `master`. But it's easy to change when we branch off from `master` to a new stable branch, which doesn't happen often. (There's `{{github.base_ref}}` but it's probably more verbose like `ref/heads/master`, and only valid for PRs.) | |||
2020-07-24 | Improve the cache keys to prevent clashes for the wrong type of build | Gordon MacPherson | |
2020-07-24 | Clamp scons cache to 4096 MB | Gordon MacPherson | |
2020-07-21 | Split CI builds into workflows for each OS | Aaron Franke | |