| Commit message (Collapse) | Author | Age |
| ... | |
| |
|
|
|
|
|
| |
Co-authored-by: Sean Dewar <seandewar@users.noreply.github.com>
Co-authored-by: Gregory Anders <greg@gpanders.com>
Co-authored-by: Sebastian Volland <seb@baunz.net>
Co-authored-by: Lewis Russell <lewis6991@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
|
| | |
|
| | |
|
| |\
| |
| | |
ci: run lint only on master branch
|
| | |
| |
| |
| |
| | |
The list of known lint issues is only updated for the master branch, so
other branches report lots of false positive issues.
|
| |\ \
| |/
|/| |
ci: bump clang version to 13 in asan and tsan
|
| | | |
|
| |/ |
|
| |
|
|
| |
[skip ci]
|
| | |
|
| |\
| |
| | |
ci: remove "brew upgrade" from macos jobs
|
| | |
| |
| |
| |
| |
| | |
Packages are automatically upgraded on install. This will avoid
upgrading unrelated packages, cutting the macos job time to about a
half.
|
| |/
|
|
|
|
| |
This provides a newer version of Doxygen (1.9.0 or later)
that fixes a bug in the documentation generator.
Closes #16498
|
| |
|
|
|
| |
Using v2 automatically fetches the latest minor patch for v2, meaning
free bug fixes without needing to manually update the tag version.
|
| |
|
|
| |
[skip ci]
|
| | |
|
| |
|
|
|
|
|
|
| |
Even though the releaes itself gets deleted, if the tag is not, then
creating a new release just re-uses the same tag, even though we're
using “--target <sha>”.
[skip ci]
|
| |
|
|
|
|
|
|
| |
Now that we have various GH actions creating branches in the main repo,
using the generic '**' pattern for the CI workflow is just wasting CI
time and leading to more queued jobs.
[skip ci]
|
| |
|
|
| |
[skip ci]
|
| |
|
|
| |
[skip ci]
|
| |
|
|
|
|
| |
The workflow needs to create commits and PRs.
[skip ci]
|
| |
|
|
| |
[skip ci]
|
| |
|
|
| |
[skip ci]
|
| |
|
|
|
|
| |
Closes #15709
[skip ci]
|
| | |
|
| |
|
| |
Trigger the backport action upon merge by marking a PR with the label `backport <branchname>` or after merge by applying the label and writing a comment containing `/backport`.
|
| |
|
|
|
|
| |
* build(cmake): update cmake min version to 3.10
* ci: test cmake minimum required version
* build(cmake): remove some legacy includes
* Since version 3.5 cmake_parse_arguments is implemented natively.
|
| | |
|
| |
|
| |
Sets GH_REPO and passes PR number to `gh`, making checkout unnecessary
|
| |
|
|
|
|
|
|
|
|
|
|
| |
This means that
"refactor!: description"
and
"refactor(scope)!: description"
will add the "refactor" label.
|
| | |
|
| |
|
| |
This only works if the label exists in the first place of course.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
| |
By default, the pull_request target only runs for the "opened",
"synchronize", and "reopened" events.
Since we've disabled GHA CI for "draft" PRs, the "ready_for_review"
event also needs to be included so CI is automatically run when leaving
draft status.
|
| |\
| |
| | |
Clean up release handling
|
| | |
| |
| |
| |
| |
| |
| |
| | |
Unlike Release build type, RelWithDebInfo does not disable asserts.
This helps get better debug info from people brave enough to use the
nightly builds, but shouldn't be used for official releases.
[skip ci]
|
| | |
| |
| |
| |
| | |
The "pull_request" trigger only enables read-access for forks,
"pull_request_target" is required if a fork is to be a trigger. Also
changed the python script to reflect this change.
|
| | |
| |
| |
| | |
The action adds all pull-request authors (and Marvim) as a co-author to the
newly created PR and also links to the closed PRs.
|
| | | |
|
| |\ \
| | |
| | | |
ci: add commit linter to GitHub Actions.
|
| | | | |
|
| |/ /
| |
| | |
instead of on every change -- including removing erroneous labels
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| | |
(#15115)" (#15141)
This reverts commit 5377b2b00aea1a0bde1b81452e6198dabe5b9796.
(Fix no longer needed.)
|
| |/
|
|
|
|
|
|
|
| |
macOS CI was failing because:
- brew upgrade fails because,
- mongodb-community cant upgrade because,
- some symlinks are owned by ... mongodb-community...
We don't use mogodb, so we can just remove it wholesale.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
In https://github.com/neovim/neovim/issues/14150 , investigations showed
that using an older gcc to build the appimage could result in severe
perf issues. This is because older gcc versions happily replace calls to
libc functions with their own, which happen to be less optimized than
their libc counterparts.
We fix this problem by upgrading to gcc-11 on ubuntu-18.04.
|