This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/master by this push:
new 6065d0c Build configuration fixes.
6065d0c is described below
commit 6065d0c4047c64f0628b8d7b2d33107155bdee66
Author: Sergey Kamov <[email protected]>
AuthorDate: Fri Jun 18 14:23:24 2021 +0300
Build configuration fixes.
---
.github/workflows/build.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 45f8048..cda768c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -52,9 +52,9 @@ jobs:
- name: Build (Linux)
if: ${{matrix.os == 'ubuntu-latest'}}
- run: 'mvn -B clean verify -P stanford-corenlp'
+ run: 'mvn -B clean verify -P stanford-corenlp,examples'
- 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'
+ run: 'mvn -B clean package -DskipTests=true -P
stanford-corenlp,examples'