From c9887ec048e90ce666615553dc552cf168567056 Mon Sep 17 00:00:00 2001 From: Nikita Salnikov-Tarnovski Date: Mon, 17 Aug 2020 16:36:52 +0300 Subject: [PATCH] Add CiMate to nightly job (#1025) --- .github/workflows/nightly.yaml | 22 ++++++++++++++++++++++ .github/workflows/pr.yaml | 1 + 2 files changed, 23 insertions(+) diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index e638130344..ce139b78c8 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -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] diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 34a82baa1b..4b7d1b2ae2 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -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