[ https://issues.apache.org/jira/browse/PHOENIX-6146?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17203397#comment-17203397 ]
ASF GitHub Bot commented on PHOENIX-6146: ----------------------------------------- stoty commented on a change in pull request #895: URL: https://github.com/apache/phoenix/pull/895#discussion_r496106020 ########## File path: Jenkinsfile.github ########## @@ -0,0 +1,173 @@ +// 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. + +pipeline { + + //FIXME convert this to Matrix job + agent { + label 'Hadoop' + } + + options { + // N.B. this is per-branch, which means per PR + disableConcurrentBuilds() + buildDiscarder(logRotator(numToKeepStr: '15')) + timeout (time: 9, unit: 'HOURS') + timestamps() + skipDefaultCheckout() + } + + environment { Review comment: I plan to re-use the Hadoop and JRE logic at a some point for our HBase profiles and JRE 8/11 testing, and it's easier to uncomment them than to copy back the relevant stuff from HBase. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > Run precommit checks on github PRs > ---------------------------------- > > Key: PHOENIX-6146 > URL: https://issues.apache.org/jira/browse/PHOENIX-6146 > Project: Phoenix > Issue Type: Task > Components: core > Reporter: Istvan Toth > Assignee: Istvan Toth > Priority: Major > > Once we have finished the migration to Yetus, it should be relatively easy to > enable running precommit checks on GutHub PRs automatically -- This message was sent by Atlassian Jira (v8.3.4#803005)