-
Notifications
You must be signed in to change notification settings - Fork 2.6k
39 lines (36 loc) · 1.03 KB
/
async-history.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Flowable Async History Build
on: [push]
env:
MAVEN_ARGS: >-
-Dmaven.javadoc.skip=true
-B -V --no-transfer-progress
-Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
jobs:
test_async:
name: Async History ${{ matrix.engineModule }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
engineModule: ['flowable-engine', 'flowable-cmmn-engine']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 17
- name: Install
run: >-
./mvnw clean install
-Dmaven.javadoc.skip=true -B -V --no-transfer-progress
-DskipTests
- name: Test
run: >-
./mvnw test
${MAVEN_ARGS}
-Pcfghistoryasync
-pl org.flowable:${{ matrix.engineModule }}
- uses: actions/upload-artifact@v2
if: always()
with:
name: surefire-reports
path: '**/target/surefire-reports/*'