blob: 38de21f06d61b7bf2b97f3e1cd29e41485bce89e [file] [log] [blame]
# 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: system-tests
on:
# Run every day at 00:00
schedule:
- cron: "0 0 * * *"
# Run on pull requests for selected modules
pull_request:
paths:
- 'nifi-api/**'
- 'nifi-framework-api/**'
- 'nifi-nar-bundles/nifi-framework-bundle/**'
- 'nifi-system-tests/**'
env:
DEFAULT_MAVEN_OPTS: >-
-Xmx3g
-Duser.language=en
-Duser.country=GB
-Duser.timezone=UTC
MAVEN_COMMAND: >-
mvn
-V
-nsu
-ntp
-ff
MAVEN_BUILD_ARGUMENTS: >-
install
-D skipTests
-am
MAVEN_RUN_ARGUMENTS: >-
package
verify
-P integration-tests
MAVEN_PROJECTS: >-
-pl nifi-system-tests/nifi-system-test-suite
-pl nifi-system-tests/nifi-stateless-system-test-suite
jobs:
ubuntu:
timeout-minutes: 60
runs-on: ubuntu-latest
name: Ubuntu Java 11
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Cache Maven Dependencies
uses: actions/cache@v2
with:
path: |
~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Java 11
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 11
- name: Build Dependencies
env:
MAVEN_OPTS: >-
${{ env.DEFAULT_MAVEN_OPTS }}
run: >
${{ env.MAVEN_COMMAND }}
${{ env.MAVEN_BUILD_ARGUMENTS }}
${{ env.MAVEN_PROJECTS }}
- name: Run Tests
env:
MAVEN_OPTS: >-
${{ env.DEFAULT_MAVEN_OPTS }}
run: >
${{ env.MAVEN_COMMAND }}
${{ env.MAVEN_RUN_ARGUMENTS }}
${{ env.MAVEN_PROJECTS }}
macos:
timeout-minutes: 60
runs-on: macos-latest
name: MacOS Java 8
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Cache Maven Dependencies
uses: actions/cache@v2
with:
path: |
~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Java 8
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 8
- name: Build Dependencies
env:
MAVEN_OPTS: >-
${{ env.DEFAULT_MAVEN_OPTS }}
run: >
${{ env.MAVEN_COMMAND }}
${{ env.MAVEN_BUILD_ARGUMENTS }}
${{ env.MAVEN_PROJECTS }}
- name: Run Tests
env:
MAVEN_OPTS: >-
${{ env.DEFAULT_MAVEN_OPTS }}
run: >
${{ env.MAVEN_COMMAND }}
${{ env.MAVEN_RUN_ARGUMENTS }}
${{ env.MAVEN_PROJECTS }}