mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
* Update CI workflow to work on new infra - Backward compatability tests are disabled during CI by default #113 - Added property to allow for disabling bwc tests - Added agent label to use specific hardware https://www.jenkins.io/doc/book/pipeline/syntax/#agent Signed-off-by: Peter Nied <petern@amazon.com>
25 lines
532 B
Groovy
25 lines
532 B
Groovy
pipeline {
|
|
agent { label 'search-cloud-ec2-c518xlarge' }
|
|
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building..'
|
|
// Disable backward compability tasks
|
|
sh './gradlew check --no-daemon --no-scan -Pbwc_tests_enabled=false'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Testing..'
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
echo 'Deploying..'
|
|
}
|
|
}
|
|
}
|
|
}
|