mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-19 04:45:07 -04:00
Static fields dont do well in Gradle with configuration cache enabled. - Use buildParams extension in build scripts - Keep BuildParams.ci for now for easy serverless migration - Tweak testing doc
34 lines
1.1 KiB
Groovy
34 lines
1.1 KiB
Groovy
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
import org.elasticsearch.gradle.Version
|
|
import org.elasticsearch.gradle.internal.info.BuildParams
|
|
|
|
apply plugin: 'elasticsearch.legacy-yaml-rest-test'
|
|
apply plugin: 'elasticsearch.legacy-yaml-rest-compat-test'
|
|
|
|
dependencies {
|
|
yamlRestTestImplementation project(path: xpackModule('rollup'))
|
|
}
|
|
|
|
restResources {
|
|
restApi {
|
|
include '_common', 'bulk', 'cluster', 'indices', 'search', 'ingest.put_pipeline', 'ingest.delete_pipeline'
|
|
}
|
|
}
|
|
|
|
testClusters.configureEach {
|
|
testDistribution = 'DEFAULT'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
setting 'xpack.security.enabled', 'true'
|
|
user username: 'elastic_admin', password: 'admin-password'
|
|
}
|
|
|
|
if (buildParams.inFipsJvm){
|
|
// This test cluster is using a BASIC license and FIPS 140 mode is not supported in BASIC
|
|
tasks.named("yamlRestTest").configure{enabled = false }
|
|
}
|