From e8d99d0636a2bf9642d40a5e6857dc7e929521a9 Mon Sep 17 00:00:00 2001 From: Dawid Weiss Date: Thu, 15 Feb 2024 21:38:37 +0100 Subject: [PATCH] Still working on nicer naming. --- .../{run-checks-everything.yml => run-checks-all.yml} | 6 +++--- .github/workflows/run-checks-mod-analysis-common.yml | 3 ++- .github/workflows/run-checks-mod-distribution.tests.yml | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) rename .github/workflows/{run-checks-everything.yml => run-checks-all.yml} (89%) diff --git a/.github/workflows/run-checks-everything.yml b/.github/workflows/run-checks-all.yml similarity index 89% rename from .github/workflows/run-checks-everything.yml rename to .github/workflows/run-checks-all.yml index 051e4fba0c34..98248c9ad7dc 100644 --- a/.github/workflows/run-checks-everything.yml +++ b/.github/workflows/run-checks-all.yml @@ -1,4 +1,4 @@ -name: "Run tests: lucene (all modules)" +name: "Run checks: all modules" on: workflow_dispatch: @@ -23,7 +23,7 @@ jobs: # This runs all validation checks without tests. checks: - name: gradle check -x test (JDK ${{ matrix.java }} on ${{ matrix.os }}) + name: checks without tests (JDK ${{ matrix.java }} on ${{ matrix.os }}) timeout-minutes: 15 strategy: @@ -43,7 +43,7 @@ jobs: # This runs all tests without any other validation checks. tests: - name: gradle test (JDK ${{ matrix.java }} on ${{ matrix.os }}) + name: tests (JDK ${{ matrix.java }} on ${{ matrix.os }}) timeout-minutes: 30 strategy: diff --git a/.github/workflows/run-checks-mod-analysis-common.yml b/.github/workflows/run-checks-mod-analysis-common.yml index b5c788f72d5e..3e20e069ad1f 100644 --- a/.github/workflows/run-checks-mod-analysis-common.yml +++ b/.github/workflows/run-checks-mod-analysis-common.yml @@ -1,4 +1,4 @@ -name: "Run tests: module lucene/analysis/common (extra regression tests)" +name: "Run checks: module lucene/analysis/common" on: workflow_dispatch: @@ -24,6 +24,7 @@ env: jobs: test: + name: Extra regression tests timeout-minutes: 15 runs-on: ubuntu-latest diff --git a/.github/workflows/run-checks-mod-distribution.tests.yml b/.github/workflows/run-checks-mod-distribution.tests.yml index cbabb0c1d35f..497382d75790 100644 --- a/.github/workflows/run-checks-mod-distribution.tests.yml +++ b/.github/workflows/run-checks-mod-distribution.tests.yml @@ -1,4 +1,4 @@ -name: "Run tests: module lucene/distribution.tests" +name: "Run checks: module lucene/distribution.tests" on: workflow_dispatch: