1
0

[MINOR] Skip checkstyle and rat in Azure (#3593)

- make tests run through without being blocked by style issues
- let GitHub Actions tasks give quick feedback on build, style and other checks
This commit is contained in:
Raymond Xu
2021-09-03 09:18:18 -07:00
committed by GitHub
parent 79b896f071
commit 11398e8480

View File

@@ -23,7 +23,7 @@ pool:
variables:
MAVEN_CACHE_FOLDER: $(Pipeline.Workspace)/.m2/repository
MAVEN_OPTS: '-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)'
MAVEN_OPTS: '-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER) -Dcheckstyle.skip=true -Drat.skip=true'
SPARK_VERSION: '2.4.4'
HADOOP_VERSION: '2.7'
SPARK_HOME: $(Pipeline.Workspace)/spark-$(SPARK_VERSION)-bin-hadoop$(HADOOP_VERSION)
@@ -115,4 +115,4 @@ stages:
wget https://archive.apache.org/dist/spark/spark-$(SPARK_VERSION)/spark-$(SPARK_VERSION)-bin-hadoop$(HADOOP_VERSION).tgz -O $(Pipeline.Workspace)/spark-$(SPARK_VERSION).tgz
tar -xvf $(Pipeline.Workspace)/spark-$(SPARK_VERSION).tgz -C $(Pipeline.Workspace)/
mkdir /tmp/spark-events/
mvn -Pintegration-tests verify
mvn $(MAVEN_OPTS) -Pintegration-tests verify