NO-JIRA: enable full build output for GitHub Actions jobs, split main and example builds to simplift viewing output
This commit is contained in:
parent
cb7f3111bb
commit
d934dc6f67
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue