This is an automated email from the ASF dual-hosted git repository.
robbie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new d934dc6 NO-JIRA: enable full build output for GitHub Actions jobs, split main and
example builds to simplift viewing output
d934dc6 is described below
commit d934dc6f67dd3b82f69c7dfe0fdf1ff1cef2b94d
Author: Robbie Gemmell <robbie@apache.org>
AuthorDate: Tue Sep 1 15:30:42 2020 +0100
NO-JIRA: enable full build output for GitHub Actions jobs, split main and example builds
to simplift viewing output
---
.github/workflows/build.yml | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0d1003a..a20c7d7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -29,10 +29,11 @@ jobs:
# use 'install' so smoke-tests will work
# use '-Pextra-tests' to ensure extra-tests compiles even though they won't actually
run
# By setting anything to org.apache.activemq.artemis.core.io.aio.AIOSequentialFileFactory.DISABLED
we are disabling libaio loading on the testsuite
- - name: Build
+ - name: Build Main
+ run: |
+ mvn -Dorg.apache.activemq.artemis.core.io.aio.AIOSequentialFileFactory.DISABLED=AnythingNotNull
-Djdk8-errorprone -Pfast-tests -Pextra-tests -Ptests-CI install
+ - name: Build Examples
run: |
- set -e
- mvn -Dorg.apache.activemq.artemis.core.io.aio.AIOSequentialFileFactory.DISABLED=AnythingNotNull
-Djdk8-errorprone -Pfast-tests -Pextra-tests -Ptests-CI -B install -q
cd examples
- mvn install -PnoRun -B -q
+ mvn install -PnoRun
|