You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by wu...@apache.org on 2021/06/20 08:30:03 UTC

[shardingsphere] branch master updated: Ignore ci for window on GitHub action (#10886)

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

wuweijie 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 b08767c  Ignore ci for window on GitHub action (#10886)
b08767c is described below

commit b08767cbe237956734f1acc1cf8a49241542d478
Author: Liang Zhang <te...@163.com>
AuthorDate: Sun Jun 20 16:29:38 2021 +0800

    Ignore ci for window on GitHub action (#10886)
---
 .github/workflows/ci.yml | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ab37a7d..20a7454 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -27,27 +27,27 @@ on:
     branches: [ master ]
 
 jobs:
-  windows:
-    runs-on: windows-latest
-    steps:
-      - name: Cache Maven Repos
-        uses: actions/cache@v2
-        with:
-          path: ~/.m2/repository
-          key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-          restore-keys: |
-            ${{ runner.os }}-maven-
-      - name: Support longpaths
-        run: git config --system core.longpaths true
-      - uses: actions/checkout@v2
-      - name: Set up JDK 8
-        uses: actions/setup-java@v1
-        with:
-          java-version: 8
-      - name: Build with Maven
-        run: ./mvnw -B clean cobertura:cobertura -D"maven.javadoc.skip"=true install
-      - name: Build examples with Maven
-        run: ./mvnw -B -f examples/pom.xml clean package -DskipTests
+#  windows:
+#    runs-on: windows-latest
+#    steps:
+#      - name: Cache Maven Repos
+#        uses: actions/cache@v2
+#        with:
+#          path: ~/.m2/repository
+#          key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+#          restore-keys: |
+#            ${{ runner.os }}-maven-
+#      - name: Support longpaths
+#        run: git config --system core.longpaths true
+#      - uses: actions/checkout@v2
+#      - name: Set up JDK 8
+#        uses: actions/setup-java@v1
+#        with:
+#          java-version: 8
+#      - name: Build with Maven
+#        run: ./mvnw -B clean cobertura:cobertura -D"maven.javadoc.skip"=true install
+#      - name: Build examples with Maven
+#        run: ./mvnw -B -f examples/pom.xml clean package -DskipTests
   
   unix:
     runs-on: ${{ matrix.os }}