SmbTestContainer base image upgraded from Ubuntu 16.04 to 24.04 to avoid
hanging Python module compilation when installing samba package.
Installing SMB had to be moved from container building to starting because
SYS_ADMIN capability is required.
(cherry picked from commit
|
||
---|---|---|
.. | ||
hooks | ||
pipelines | ||
scripts | ||
.editorconfig | ||
.gitignore | ||
bun.lockb | ||
check-es-serverless.yml | ||
package.json | ||
packer_cache.sh | ||
pull-requests.json | ||
README.md | ||
tsconfig.json | ||
update-es-serverless.yml |
Elasticsearch CI Pipelines
This directory contains pipeline definitions and scripts for running Elasticsearch CI on Buildkite.
Directory Structure
- pipelines - pipeline definitions/yml
- scripts - scripts used by pipelines, inside steps
- hooks - Buildkite hooks, where global env vars and secrets are set
Pipeline Definitions
Pipelines are defined using YAML files residing in pipelines. These are mostly static definitions that are used as-is, but there are a few dynamically-generated exceptions (see below).
Dynamically Generated Pipelines
Pull request pipelines are generated dynamically based on labels, files changed, and other properties of pull requests.
Non-pull request pipelines that include BWC version matrices must also be generated whenever the list of BWC versions is updated.
Pull Request Pipelines
Pull request pipelines are generated dynamically at CI time based on numerous properties of the pull request. See scripts/pull-request for details.
BWC Version Matrices
For pipelines that include BWC version matrices, you will see one or more template files (e.g. periodic.template.yml) and a corresponding generated file (e.g. periodic.yml). The generated file is the one that is actually used by Buildkite.
These files are updated by running:
./gradlew updateCIBwcVersions
This also runs automatically during release procedures.
You should always make changes to the template files, and run the above command to update the generated files.
Node / TypeScript
Node (technically bun
), TypeScript, and related files are currently used to generate pipelines for pull request CI. See scripts/pull-request for details.