mirror of https://github.com/apache/nifi.git
NIFI-13601 Added code-coverage workflow
- Rescheduled docker-tests to weekly execution - Removed scheduled execution of other testing workflows Signed-off-by: Chris Sampson <chris.sampson82@gmail.com> This closes #9126
This commit is contained in:
parent
33da3463b6
commit
7e200fa34e
|
@ -179,19 +179,11 @@ jobs:
|
||||||
${{ env.DEFAULT_MAVEN_OPTS }}
|
${{ env.DEFAULT_MAVEN_OPTS }}
|
||||||
-Dfrontend.skipTests=${{ steps.changes.outputs.frontend == 'true' && 'false' || 'true' }}
|
-Dfrontend.skipTests=${{ steps.changes.outputs.frontend == 'true' && 'false' || 'true' }}
|
||||||
run: >
|
run: >
|
||||||
${{ env.MAVEN_COMMAND }}
|
${{ env.MAVEN_COMMAND }}
|
||||||
jacoco:prepare-agent
|
|
||||||
${{ env.MAVEN_VERIFY_COMMAND }}
|
${{ env.MAVEN_VERIFY_COMMAND }}
|
||||||
${{ env.MAVEN_BUILD_PROFILES }}
|
${{ env.MAVEN_BUILD_PROFILES }}
|
||||||
-P report-code-coverage
|
|
||||||
-P python-unit-tests
|
-P python-unit-tests
|
||||||
${{ env.MAVEN_PROJECTS }}
|
${{ env.MAVEN_PROJECTS }}
|
||||||
- name: Codecov
|
|
||||||
uses: codecov/codecov-action@v4
|
|
||||||
if: github.repository_owner == 'apache'
|
|
||||||
with:
|
|
||||||
files: ./nifi-code-coverage/target/site/jacoco-aggregate/jacoco.xml
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
||||||
- name: Upload Test Reports
|
- name: Upload Test Reports
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
name: code-coverage
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '.github/workflows/code-coverage.yml'
|
||||||
|
|
||||||
|
env:
|
||||||
|
DEFAULT_MAVEN_OPTS: >-
|
||||||
|
-Xms6g
|
||||||
|
-Xmx6g
|
||||||
|
-Dorg.slf4j.simpleLogger.defaultLogLevel=WARN
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
timeout-minutes: 120
|
||||||
|
runs-on:
|
||||||
|
- ubuntu-latest
|
||||||
|
name: Ubuntu Java 21
|
||||||
|
steps:
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Java 21
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: 'zulu'
|
||||||
|
java-version: 21
|
||||||
|
cache: 'maven'
|
||||||
|
- name: Set up Python 3.10
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.10'
|
||||||
|
- name: Maven Build
|
||||||
|
env:
|
||||||
|
MAVEN_OPTS: >-
|
||||||
|
${{ env.DEFAULT_MAVEN_OPTS }}
|
||||||
|
run: >
|
||||||
|
./mvnw --fail-fast --no-snapshot-updates --no-transfer-progress --show-version
|
||||||
|
-D include-python-integration-tests=true
|
||||||
|
-P integration-tests
|
||||||
|
-P report-code-coverage
|
||||||
|
jacoco:prepare-agent
|
||||||
|
verify
|
||||||
|
- name: Codecov
|
||||||
|
uses: codecov/codecov-action@v4
|
||||||
|
if: github.repository_owner == 'apache'
|
||||||
|
with:
|
||||||
|
files: ./nifi-code-coverage/target/site/jacoco-aggregate/jacoco.xml
|
||||||
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
@ -16,8 +16,6 @@
|
||||||
name: docker-tests
|
name: docker-tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
|
||||||
- cron: "0 2 * * *"
|
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/docker-tests.yml'
|
- '.github/workflows/docker-tests.yml'
|
||||||
|
|
|
@ -16,9 +16,6 @@
|
||||||
name: integration-tests
|
name: integration-tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Run every day at 03:00
|
|
||||||
schedule:
|
|
||||||
- cron: "0 3 * * *"
|
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/integration-tests.yml'
|
- '.github/workflows/integration-tests.yml'
|
||||||
|
|
|
@ -16,9 +16,6 @@
|
||||||
name: system-tests
|
name: system-tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Run every day at 00:00
|
|
||||||
schedule:
|
|
||||||
- cron: "0 0 * * *"
|
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/system-tests.yml'
|
- '.github/workflows/system-tests.yml'
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
[![system-tests](https://github.com/apache/nifi/workflows/system-tests/badge.svg)](https://github.com/apache/nifi/actions/workflows/system-tests.yml)
|
[![system-tests](https://github.com/apache/nifi/workflows/system-tests/badge.svg)](https://github.com/apache/nifi/actions/workflows/system-tests.yml)
|
||||||
[![integration-tests](https://github.com/apache/nifi/actions/workflows/integration-tests.yml/badge.svg)](https://github.com/apache/nifi/actions/workflows/integration-tests.yml)
|
[![integration-tests](https://github.com/apache/nifi/actions/workflows/integration-tests.yml/badge.svg)](https://github.com/apache/nifi/actions/workflows/integration-tests.yml)
|
||||||
[![docker-tests](https://github.com/apache/nifi/actions/workflows/docker-tests.yml/badge.svg)](https://github.com/apache/nifi/actions/workflows/docker-tests.yml)
|
[![docker-tests](https://github.com/apache/nifi/actions/workflows/docker-tests.yml/badge.svg)](https://github.com/apache/nifi/actions/workflows/docker-tests.yml)
|
||||||
|
[![code-coverage](https://github.com/apache/nifi/actions/workflows/code-coverage.yml/badge.svg)](https://github.com/apache/nifi/actions/workflows/code-coverage.yml)
|
||||||
[![codecov](https://codecov.io/gh/apache/nifi/branch/main/graph/badge.svg)](https://codecov.io/gh/apache/nifi)
|
[![codecov](https://codecov.io/gh/apache/nifi/branch/main/graph/badge.svg)](https://codecov.io/gh/apache/nifi)
|
||||||
[![Docker pulls](https://img.shields.io/docker/pulls/apache/nifi.svg)](https://hub.docker.com/r/apache/nifi/)
|
[![Docker pulls](https://img.shields.io/docker/pulls/apache/nifi.svg)](https://hub.docker.com/r/apache/nifi/)
|
||||||
[![Version](https://img.shields.io/maven-central/v/org.apache.nifi/nifi-utils.svg)](https://nifi.apache.org/download.html)
|
[![Version](https://img.shields.io/maven-central/v/org.apache.nifi/nifi-utils.svg)](https://nifi.apache.org/download.html)
|
||||||
|
|
Loading…
Reference in New Issue