mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 04:15:23 -04:00
Switch execution agent of JDK availability check pipeline from vm-agent to container-agent. Moves the schedule definition from the `Logstash Pipeline Scheduler` pipeline into the pipeline definition, adding a schedule also for `8.x` branch.
14 lines
No EOL
481 B
YAML
14 lines
No EOL
481 B
YAML
steps:
|
|
- label: "JDK Availability check"
|
|
key: "jdk-availability-check"
|
|
agents:
|
|
image: "docker.elastic.co/ci-agent-images/platform-ingest/buildkite-agent-logstash-ci"
|
|
cpu: "4"
|
|
memory: "6Gi"
|
|
ephemeralStorage: "100Gi"
|
|
command: |
|
|
set -euo pipefail
|
|
|
|
source .buildkite/scripts/common/container-agent.sh
|
|
export GRADLE_OPTS="-Xmx2g -Dorg.gradle.daemon=false -Dorg.gradle.logging.level=info"
|
|
ci/check_jdk_version_availability.sh |