You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by xu...@apache.org on 2021/06/20 21:36:53 UTC

[hudi] branch master updated: [MINOR] Put Azure cache tasks first (#3118)

This is an automated email from the ASF dual-hosted git repository.

xushiyan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new e41f13f  [MINOR] Put Azure cache tasks first (#3118)
e41f13f is described below

commit e41f13fe7bf19302def4eb5607e95c9d7395266c
Author: Raymond Xu <27...@users.noreply.github.com>
AuthorDate: Sun Jun 20 14:36:39 2021 -0700

    [MINOR] Put Azure cache tasks first (#3118)
---
 azure-pipelines.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 2fdf429..1734cb5 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -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'
@@ -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'
@@ -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'
@@ -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'
@@ -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'
@@ -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'