You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2022/10/19 12:29:33 UTC

[shardingsphere] branch master updated: Refactor : increase time limitation for nightly CI (#21642)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new bb62c908404 Refactor : increase time limitation for nightly CI (#21642)
bb62c908404 is described below

commit bb62c908404497933c590b38bc94ac04040f863a
Author: 孙念君 Nianjun Sun <su...@apache.org>
AuthorDate: Wed Oct 19 20:29:15 2022 +0800

    Refactor : increase time limitation for nightly CI (#21642)
    
    * Refactor : increase time limitation for nightly CI (#21640)
    
    * Format : format by spotless #(21640)
    
    * Refactor : remove 'fail-fast: true' because it's the default value
    
    * Refactor : remove max parallell limitation to make one IT finish faster(#21640)
    
    * Fix : fix a nightly build path issue
---
 .github/workflows/it.yml                                                | 2 --
 .github/workflows/nightly-build.yml                                     | 2 +-
 .github/workflows/nightly-ci.yml                                        | 2 +-
 pom.xml                                                                 | 2 +-
 .../sql/parser/sql/common/extractor/TableExtractorTest.java             | 2 +-
 5 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/it.yml b/.github/workflows/it.yml
index d567d4015f1..ecf112d13bb 100644
--- a/.github/workflows/it.yml
+++ b/.github/workflows/it.yml
@@ -132,7 +132,6 @@ jobs:
     runs-on: ubuntu-latest
     timeout-minutes: 10
     strategy:
-      max-parallel: 10
       matrix:
         adapter: [ proxy, jdbc ]
         mode: [ Standalone, Cluster ]
@@ -169,7 +168,6 @@ jobs:
     runs-on: ubuntu-latest
     timeout-minutes: 10
     strategy:
-      max-parallel: 8
       matrix:
         adapter: [ proxy, jdbc ]
         mode: [ Standalone, Cluster ]
diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml
index 503848e1988..207b5a79d9f 100644
--- a/.github/workflows/nightly-build.yml
+++ b/.github/workflows/nightly-build.yml
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-name: Nightly - build
+name: Nightly - Build
 
 on:
   schedule:
diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml
index 0d0804c5ea9..393bc9420ce 100644
--- a/.github/workflows/nightly-ci.yml
+++ b/.github/workflows/nightly-ci.yml
@@ -29,7 +29,7 @@ jobs:
     if: github.repository == 'apache/shardingsphere'
     name: CI - JDK ${{ matrix.java-version }} on ${{ matrix.os }}
     runs-on: ${{ matrix.os }}
-    timeout-minutes: 60
+    timeout-minutes: 90
     strategy:
       fail-fast: false
       matrix:
diff --git a/pom.xml b/pom.xml
index dfbdde45b78..a6a768c9703 100644
--- a/pom.xml
+++ b/pom.xml
@@ -112,7 +112,7 @@
         
         <hikari-cp.version>3.4.2</hikari-cp.version>
         <commons-dbcp2.version>2.2.0</commons-dbcp2.version>
-
+        
         <junit5.version>5.9.1</junit5.version>
         <junit4.version>4.13.2</junit4.version>
         <hamcrest.version>1.3</hamcrest.version>
diff --git a/sql-parser/statement/src/test/java/org/apache/shardingsphere/sql/parser/sql/common/extractor/TableExtractorTest.java b/sql-parser/statement/src/test/java/org/apache/shardingsphere/sql/parser/sql/common/extractor/TableExtractorTest.java
index 760377aec3e..adde21c8de2 100644
--- a/sql-parser/statement/src/test/java/org/apache/shardingsphere/sql/parser/sql/common/extractor/TableExtractorTest.java
+++ b/sql-parser/statement/src/test/java/org/apache/shardingsphere/sql/parser/sql/common/extractor/TableExtractorTest.java
@@ -97,7 +97,7 @@ public final class TableExtractorTest {
         assertTableSegment(tableSegmentIterator.next(), 122, 128, "t_order");
         assertTableSegment(tableSegmentIterator.next(), 130, 132, "t_order");
     }
-
+    
     @Test
     public void assertNotExistTableFromRoutineBody() {
         RoutineBodySegment routineBodySegment = new RoutineBodySegment(0, 3);