Skip to content

Commit

Permalink
NIFI-13601 Added code-coverage workflow
Browse files Browse the repository at this point in the history
- Removed scheduled execution of other testing workflows
  • Loading branch information
exceptionfactory committed Jul 30, 2024
1 parent dfa015e commit 539245e
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 18 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,19 +179,11 @@ jobs:
${{ env.DEFAULT_MAVEN_OPTS }}
-Dfrontend.skipTests=${{ steps.changes.outputs.frontend == 'true' && 'false' || 'true' }}
run: >
${{ env.MAVEN_COMMAND }}
jacoco:prepare-agent
${{ env.MAVEN_COMMAND }}
${{ env.MAVEN_VERIFY_COMMAND }}
${{ env.MAVEN_BUILD_PROFILES }}
-P report-code-coverage
${{ env.MAVEN_BUILD_PROFILES }}
-P python-unit-tests
${{ 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
uses: actions/upload-artifact@v4
with:
Expand Down
70 changes: 70 additions & 0 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
@@ -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:
- macos-14
name: macOS 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 }}
2 changes: 0 additions & 2 deletions .github/workflows/docker-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
name: docker-tests

on:
schedule:
- cron: "0 2 * * *"
push:
paths:
- '.github/workflows/docker-tests.yml'
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
name: integration-tests

on:
# Run every day at 03:00
schedule:
- cron: "0 3 * * *"
push:
paths:
- '.github/workflows/integration-tests.yml'
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
name: system-tests

on:
# Run every day at 00:00
schedule:
- cron: "0 0 * * *"
push:
paths:
- '.github/workflows/system-tests.yml'
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
[![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)
[![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)
[![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)
Expand Down

0 comments on commit 539245e

Please sign in to comment.