Skip to content

Added exclusion for sun.jdk to support java 11 #4

Added exclusion for sun.jdk to support java 11

Added exclusion for sun.jdk to support java 11 #4

# 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 compatibility Java CI with Maven
on:
# TODO remove after tested
push:
branches: [ "build_and_test_ci" ]
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