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/01 13:52:59 UTC

[incubator-nlpcraft] 01/01: (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 dfad8d36603b0555cea13918c59f7642aba513c2
Author: smakov <sm...@apache.org>
AuthorDate: Mon Jun 1 16:52:46 2020 +0300

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

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 06387e9..1cfc7b7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -19,6 +19,7 @@ on:
   push:
     branches:
       - master
+      - github-actions-windows
   pull_request:
     branches:
       - master
@@ -50,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'
-
-      - name: Build (Windows)
-        if: ${{matrix.os == 'windows-latest'}}
-        # Build only, no tests because of memory limits.
-        run: 'mvn -B clean package -DskipTests=true'