Skip to content
Merged
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
12 changes: 6 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ stages:
jobs:
- job: unit_tests_spark_client
steps:
- script: |
mvn $(MAVEN_OPTS) clean install -DskipTests
- task: Cache@2
inputs:
key: 'maven | "$(Agent.OS)" | **/pom.xml'
Expand All @@ -44,6 +42,8 @@ stages:
maven
path: $(MAVEN_CACHE_FOLDER)
displayName: Cache Maven local repo
- script: |
mvn $(MAVEN_OPTS) clean install -DskipTests
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
Expand All @@ -58,8 +58,6 @@ stages:
mavenOptions: '-Xmx2g $(MAVEN_OPTS)'
- job: unit_tests_utilities
steps:
- script: |
mvn $(MAVEN_OPTS) clean install -DskipTests
- task: Cache@2
inputs:
key: 'maven | "$(Agent.OS)" | **/pom.xml'
Expand All @@ -68,6 +66,8 @@ stages:
maven
path: $(MAVEN_CACHE_FOLDER)
displayName: Cache Maven local repo
- script: |
mvn $(MAVEN_OPTS) clean install -DskipTests
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
Expand All @@ -82,8 +82,6 @@ stages:
mavenOptions: '-Xmx2g $(MAVEN_OPTS)'
- job: unit_tests_other_modules
steps:
- script: |
mvn $(MAVEN_OPTS) clean install -DskipTests
- task: Cache@2
inputs:
key: 'maven | "$(Agent.OS)" | **/pom.xml'
Expand All @@ -92,6 +90,8 @@ stages:
maven
path: $(MAVEN_CACHE_FOLDER)
displayName: Cache Maven local repo
- script: |
mvn $(MAVEN_OPTS) clean install -DskipTests
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
Expand Down