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