You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2019/10/18 20:20:21 UTC

[jmeter] 01/02: Use --no-parallel for GitHub Actions

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

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

commit f27e0ad24a02f62d1ee7013ac35368c0eb730f10
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Fri Oct 18 13:48:13 2019 +0300

    Use --no-parallel for GitHub Actions
    
    This might avoid failures of the time-sensitive tests
---
 .github/workflows/main.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 8e98e97..f0040c0 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -23,7 +23,7 @@ jobs:
     - name: 'Test'
       shell: bash
       run: |
-        ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource
+        ./gradlew --no-parallel build -x distTar -x signDistTar -x distTarSource -x signDistTarSource
 
   mac:
     name: 'macOS (JDK 12)'
@@ -38,4 +38,4 @@ jobs:
         java-version: 12
     - name: 'Test'
       run: |
-        ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource -Dskip.test_TestDNSCacheManager.testWithCustomResolverAnd1Server=true
+        ./gradlew --no-parallel build -x distTar -x signDistTar -x distTarSource -x signDistTarSource -Dskip.test_TestDNSCacheManager.testWithCustomResolverAnd1Server=true