Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .ci/schedule-weekly.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ pipeline {
stages {
stage('Agent weekly exhaustive test') {
steps {
build(job: 'apm-agent-java/apm-agent-java-mbp/main',
parameters: [
booleanParam(name: 'jdk_compatibility_ci', value: true),
booleanParam(name: 'end_to_end_tests_ci', value: true),
booleanParam(name: 'agent_integration_tests_ci', value: true),
],
propagate: false,
wait: false
)
build(job: 'apm-agent-java/apm-agent-java-mbp/main',
parameters: [
booleanParam(name: 'jdk_compatibility_ci', value: true),
booleanParam(name: 'windows_ci', value: true),
booleanParam(name: 'end_to_end_tests_ci', value: true),
booleanParam(name: 'agent_integration_tests_ci', value: true),
],
propagate: false,
wait: false
)
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pipeline {
quietPeriod(10)
}
triggers {
issueCommentTrigger("(${obltGitHubComments()}|^run (jdk compatibility|benchmark|integration|end-to-end) tests)")
issueCommentTrigger("(${obltGitHubComments()}|^run (jdk compatibility|benchmark|integration|end-to-end|windows) tests)")
}
parameters {
string(name: 'JAVA_VERSION', defaultValue: 'java11', description: 'Java version to build & test')
Expand Down Expand Up @@ -103,8 +103,8 @@ pipeline {
}
stages {
/**
* Build on a linux environment.
*/
* Build on a linux environment.
*/
stage('Build') {
when {
beforeAgent true
Expand Down Expand Up @@ -306,7 +306,7 @@ pipeline {
steps {
withGithubNotify(context: 'Benchmarks', tab: 'artifacts') {
deleteDir()
unstashV2(name: 'build', bucket: "${JOB_GCS_BUCKET_STASH}", credentialsId: "${JOB_GCS_CREDENTIALS}")
unstashV2(name: 'build', bucket: "${JOB_GCS_BUCKET_STASH}", credentialsId: "${JOB_GCS_CREDENTIALS}")
dir("${BASE_DIR}"){
withOtelEnv() {
sh './scripts/jenkins/run-benchmarks.sh'
Expand All @@ -325,7 +325,7 @@ pipeline {
}
/**
* Build javadoc
*/
*/
stage('Javadoc') {
agent { label 'linux && immutable' }
options { skipDefaultCheckout() }
Expand Down Expand Up @@ -404,7 +404,7 @@ pipeline {
steps {
withGithubNotify(context: "Unit Tests ${JDK_VERSION}", tab: 'tests') {
deleteDir()
unstashV2(name: 'build', bucket: "${JOB_GCS_BUCKET_STASH}", credentialsId: "${JOB_GCS_CREDENTIALS}")
unstashV2(name: 'build', bucket: "${JOB_GCS_BUCKET_STASH}", credentialsId: "${JOB_GCS_CREDENTIALS}")
dir("${BASE_DIR}"){
withOtelEnv() {
sh(label: "./mvnw test for ${JDK_VERSION}", script: './mvnw test')
Expand Down