This is an automated email from the ASF dual-hosted git repository.
jkevan pushed a commit to branch unomi-1.6.x
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/unomi-1.6.x by this push:
new 49d9952 UNOMI-529: Fix doc generation and build (#362)
49d9952 is described below
commit 49d995210dab09266ece7cd7681dfd1a3d6bc5f3
Author: kevan Jahanshahi <[email protected]>
AuthorDate: Thu Nov 18 07:58:49 2021 +0100
UNOMI-529: Fix doc generation and build (#362)
* UNOMI-529: try to fix documentation generation and artifacts push in
github workflows
* UNOMI-529: try to fix documentation generation and artifacts push in
github workflows
* UNOMI-529: try to fix documentation generation and artifacts push in
github workflows
* UNOMI-529: try to fix documentation generation and artifacts push in
github workflows
---
.github/workflows/unomi-ci-build-tests.yml | 7 ++-----
.github/workflows/unomi-ci-docs-deploy.yml | 2 +-
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/unomi-ci-build-tests.yml
b/.github/workflows/unomi-ci-build-tests.yml
index 6b77035..b890bd4 100644
--- a/.github/workflows/unomi-ci-build-tests.yml
+++ b/.github/workflows/unomi-ci-build-tests.yml
@@ -22,11 +22,8 @@ jobs:
with:
java-version: ${{ matrix.java }}
- - name: Build
- run: mvn -U -B -e clean install -DskipTests
-
- - name: Tests
- run: mvn test
+ - name: Build and Unit tests
+ run: mvn -U -B -e clean install
- name: Integration tests
run: mvn -pl itests clean install -Pintegration-tests
diff --git a/.github/workflows/unomi-ci-docs-deploy.yml
b/.github/workflows/unomi-ci-docs-deploy.yml
index 796bfe3..b775411 100644
--- a/.github/workflows/unomi-ci-docs-deploy.yml
+++ b/.github/workflows/unomi-ci-docs-deploy.yml
@@ -21,7 +21,7 @@ jobs:
server-password: NEXUS_PW
- name: Generate documentation
- run: mvn javadoc:aggregate source:aggregate
+ run: mvn -U -B -e clean install -DskipTests javadoc:aggregate
source:aggregate
- name: Deploying
run: mvn deploy -DskipTests