NO-JIRA: enable full build output for GitHub Actions jobs, split main and example builds to simplift viewing output

This commit is contained in:
Robbie Gemmell 2020-09-01 15:30:42 +01:00
parent cb7f3111bb
commit d934dc6f67
1 changed files with 5 additions and 4 deletions

View File

@ -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