You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by sm...@apache.org on 2020/06/12 10:24:45 UTC

[incubator-nlpcraft] 02/02: (WIP) GitHub Actions build/tests on Windows.

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

smakov pushed a commit to branch github-actions-windows
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git

commit 0d1cf7e34cf1b1b5dcbf8012fd3ab45423c7554d
Author: smakov <sm...@apache.org>
AuthorDate: Fri Jun 12 13:24:28 2020 +0300

    (WIP) GitHub Actions build/tests on Windows.
---
 .github/workflows/build.yml | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3f2da51..3e8bba0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -51,11 +51,5 @@ jobs:
           key: ${{runner.os}}-m2-${{hashFiles('**/pom.xml')}}
           restore-keys: ${{runner.os}}-m2
 
-      - name: Build (Linux)
-        if: ${{matrix.os == 'ubuntu-latest'}}
+      - name: Build
         run: 'mvn -B clean verify -P stanford-corenlp'
-
-      - name: Build (Windows)
-        if: ${{matrix.os == 'windows-latest'}}
-        # Build only, no tests because of memory limits.
-        run: 'mvn -B clean package -DskipTests=true -P stanford-corenlp'