Age | Commit message (Collapse) | Author |
|
Should speed up builds by avoiding warning spam.
This warning is no longer raised by newer GCC versions.
|
|
|
|
|
|
The UX is pretty bad, and the fact that all reports are private by
default with no option to make them public makes Coverity Scan hardly
usable in a community-driven project.
|
|
Travis CI upgraded their Xenial VMs to default to openjdk11, which
is not working properly for sdkmanager, so we can no longer accept
licenses for the SDK.
They don't really seem to care about providing a good alternative
for us from the few threads I read, so let's just force openjdk8
back.
|
|
for macOS CI.
|
|
|
|
Seems to be a 5 year old bug that upstream doesn't care about.
https://github.com/travis-ci/travis-ci/issues/1066
|
|
|
|
This prevents Travis CI from performing full builds if static checks
have failed.
This also removes `sudo: false` as it is deprecated.
|
|
|
|
Wrapped libpng usage in a pair of functions under PNGDriverCommon,
which convert between Godot Image and png data.
Switched to libpng 1.6 simplified API for ease of maintenance.
Implemented ImageLoaderPNG and ResourceSaverPNG in terms of
PNGDriverCommon functions.
Travis, switched to builtin libpng (thus builtin freetype and zlib also)
so we can build on Xenial.
|
|
This increases the build coverage by making sure the Linux
export template still compiles when 3D support is disabled.
This also adds human-readable names to each job, which are displayed
on the Travis CI interface.
|
|
|
|
And remove 2 warnings from warnings=extra.
|
|
Also add one GCC 5 legacy build job for debug template.
|
|
|
|
|
|
Not sure why we switched from homebrew to scons-local anymore,
but pip should work just fine and is recommended by upstream.
Downloads of scons-local from SourceForge were quite iffy, so
this should help avoid CI errors due to not having downloaded
SCons successfully.
Setting Python's user binary PATH seems necessary on Travis/OSX
as per travis-ci/travis-ci#5030 (confirmed that 'scons' is not
in PATH without it).
|
|
|
|
They are currently warning-free, so let's keep it that way.
|
|
This makes sure the release code path is tested in CI builds.
This closes #22147.
|
|
Update Coverity Scan secure token, previous one expired.
|
|
Also increase AppVeyor cache size to 1024,
should match what is available for us in the free plan:
https://www.appveyor.com/docs/build-cache/#cache-size-beta
And drop obsolete debug_release option for Windows, superseded
by target=release and debug_symbols=yes.
|
|
See <https://blog.travis-ci.com/2018-07-19-xcode9-4-default-announce>.
|
|
|
|
|
|
|
|
Also make the coverity addon only applied to the static checks build job.
|
|
Remove unused MinGW config, switch server build to gcc/tools.
Update COVERITY_SCAN_TOKEN's secure.
|
|
|
|
Also ensure that we are not using cached build objects (need to build
from scratch), and update encrypted Coverity Scan token.
|
|
It comes from the Coverity documentation but it fails, and their example projects don't use it.
|
|
|
|
|
|
We disabled them due to Travis having big infrastructure issues for osx builds,
but it seems to be back under control now.
|
|
|
|
1.0.2 is now the minimum version of openssl to build against
|
|
|
|
Also disable openmp build on Travis, breaks on Trusty's Clang.
Group deps more naturally.
|
|
This will be the new standard from now on.
|
|
|
|
Travis CI has not enough OSX build nodes allocated for open source projects,
so we often have to wait several hours (up to a full day) for builds to start.
|
|
|
|
|
|
|
|
|
|
|
|
Travis always has massive backlog of macOS builds, so we can't rely on them
too much.
The iphone build was mostly useful to spot tools=no or target=release_debug
issues, so replacing it by an appropriate X11 build.
|
|
Now that AppVeyor handles testing Windows builds with MSVC,
we can skip the need to test against Travis' old MinGW toolchain
and have a faster CI process.
Also try building X11 binaries against system OpenSSL, should
speed up build.
|