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

duhengforever pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
     new 459b9d0  Re-enable testing on ARM64 (#3850)
459b9d0 is described below

commit 459b9d0be86e9584b2633f84be047beea8410a41
Author: Martin Grigorov <[email protected]>
AuthorDate: Wed Feb 16 02:52:13 2022 +0200

    Re-enable testing on ARM64 (#3850)
    
    * Re-enable testing on ARM64
    
    But this time on:
    1) AWS Graviton2 machines - they are more reliable
    2) Ubuntu 20.04 - it is better maintained by Travis team
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
    
    * Run `mvn verify` in batch mode and do not log network transfer progress
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
    
    * Do not use -ntp (--no-transfer-progress)
    
    Because it is not available in Maven 3.6.0 (latest available in Ubuntu 
18.04)
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
 .travis.yml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index c55d929..5f08c85 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,8 +18,11 @@ matrix:
   # On Linux we install latest OpenJDK 1.8 from Ubuntu repositories
   - name: Linux x86_64
     arch: amd64
-#  - name: Linux aarch64
-#    arch: arm64
+  - name: Linux aarch64
+    dist: focal
+    arch: arm64-graviton2
+    group: edge
+    virt: vm
 
 cache:
   directories:
@@ -45,7 +48,7 @@ before_script:
   - ulimit -c unlimited
 
 script:
-  - mvn verify -DskipTests
+  - mvn -B verify -DskipTests
   - travis_retry mvn -B clean apache-rat:check
   - travis_retry mvn -B install jacoco:report coveralls:report
   - travis_retry mvn -B clean install -pl test -Pit-test

Reply via email to