Future Java Compatibility Test #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Future Java Compatibility Test | |
on: | |
schedule: | |
# At 2:30am each Saturday on the default branch | |
- cron: '30 2 * * 6' | |
jobs: | |
build_and_test_java11: | |
runs-on: ubuntu-latest | |
container: maven:3-eclipse-temurin-11 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build and Test with Maven | |
run: mvn -B package --file flink-cyber/pom.xml | |
build_and_test_java17: | |
runs-on: ubuntu-latest | |
container: maven:3-eclipse-temurin-17 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build and Test with Maven | |
run: mvn -B package --file flink-cyber/pom.xml | |
build_and_test_java21: | |
runs-on: ubuntu-latest | |
container: maven:3-eclipse-temurin-21 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build and Test with Maven | |
run: mvn -B package --file flink-cyber/pom.xml |