Add CiMate to nightly job (#1025)
This commit is contained in:
parent
0afb55ab40
commit
c9887ec048
|
@ -43,6 +43,17 @@ jobs:
|
|||
timeout_minutes: 60
|
||||
max_attempts: 3
|
||||
|
||||
- name: Aggregate test reports with ciMate
|
||||
if: always()
|
||||
continue-on-error: true
|
||||
env:
|
||||
CIMATE_PROJECT_ID: mz1jo49x
|
||||
CIMATE_CI_KEY: "Night / jdk${{matrix.java}}"
|
||||
run: |
|
||||
wget -q https://get.cimate.io/release/linux/cimate
|
||||
chmod +x cimate
|
||||
./cimate -v "**/TEST-*.xml"
|
||||
|
||||
testLatestDep:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -67,6 +78,17 @@ jobs:
|
|||
timeout_minutes: 60
|
||||
max_attempts: 3
|
||||
|
||||
- name: Aggregate test reports with ciMate
|
||||
if: always()
|
||||
continue-on-error: true
|
||||
env:
|
||||
CIMATE_PROJECT_ID: mz1jo49x
|
||||
CIMATE_CI_KEY: "Night / latestDep"
|
||||
run: |
|
||||
wget -q https://get.cimate.io/release/linux/cimate
|
||||
chmod +x cimate
|
||||
./cimate -v "**/TEST-*.xml"
|
||||
|
||||
issue:
|
||||
name: Open issue on failure
|
||||
needs: [test, testLatestDep]
|
||||
|
|
|
@ -41,6 +41,7 @@ jobs:
|
|||
continue-on-error: true
|
||||
env:
|
||||
CIMATE_PROJECT_ID: mz1jo49x
|
||||
CIMATE_CI_KEY: "PR / jdk${{matrix.java}}"
|
||||
run: |
|
||||
wget -q https://get.cimate.io/release/linux/cimate
|
||||
chmod +x cimate
|
||||
|
|
Loading…
Reference in New Issue