-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test Avro extension against multiple Avro versions (#25216)
- Loading branch information
1 parent
0dcb26d
commit 7919c3f
Showing
14 changed files
with
451 additions
and
38 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
.test-infra/jenkins/job_PostCommit_Java_Avro_Versions.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import CommonJobProperties as commonJobProperties | ||
import PostcommitJobBuilder | ||
|
||
|
||
// This job runs the Java tests that depends on Avro against different Avro API versions | ||
PostcommitJobBuilder.postCommitJob('beam_PostCommit_Java_Avro_Versions', 'Run PostCommit_Java_Avro_Versions', | ||
'Java Avro Versions Post Commit Tests', this) { | ||
|
||
description('Java Avro Versions Post Commit Tests') | ||
|
||
// Set common parameters. | ||
commonJobProperties.setTopLevelMainJobProperties(delegate, 'master', 240) | ||
|
||
// Publish all test results to Jenkins | ||
publishers { | ||
archiveJunit('**/build/test-results/**/*.xml') | ||
} | ||
|
||
// Gradle goals for this job. | ||
steps { | ||
gradle { | ||
rootBuildScriptDir(commonJobProperties.checkoutDir) | ||
tasks(":javaAvroVersionsTest") | ||
commonJobProperties.setGradleSwitches(delegate) | ||
// Specify maven home on Jenkins, needed by Maven archetype integration tests. | ||
switches('-Pmaven_home=/home/jenkins/tools/maven/apache-maven-3.5.4') | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.