From baefd375515be0be025603f909045b6208e49060 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Papp=20=28TWiStErRob=29?= Date: Sat, 22 Jul 2023 10:56:44 +0100 Subject: [PATCH] Add tests to verify java versions on CI --- .github/workflows/java-versions.yml | 1 + .github/workflows/main.yml | 1 + .../publishplugin/JavaVersionInCompatTest.kt | 27 +++++++++++++++++++ .../publishplugin/e2e/JavaVersionInE2ETest.kt | 27 +++++++++++++++++++ .../publishplugin/JavaVersionUnitTest.kt | 27 +++++++++++++++++++ 5 files changed, 83 insertions(+) create mode 100644 src/compatTest/kotlin/io/github/gradlenexus/publishplugin/JavaVersionInCompatTest.kt create mode 100644 src/e2eTest/kotlin/io/github/gradlenexus/publishplugin/e2e/JavaVersionInE2ETest.kt create mode 100644 src/test/kotlin/io/github/gradlenexus/publishplugin/JavaVersionUnitTest.kt diff --git a/.github/workflows/java-versions.yml b/.github/workflows/java-versions.yml index 25e317b7..6645292c 100644 --- a/.github/workflows/java-versions.yml +++ b/.github/workflows/java-versions.yml @@ -14,6 +14,7 @@ on: jobs: openjdk: strategy: + fail-fast: false matrix: jdk: [8, 11, 17] name: "OpenJDK ${{ matrix.jdk }}" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 10735bc3..c48962c7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,6 +14,7 @@ on: jobs: gradle: strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} diff --git a/src/compatTest/kotlin/io/github/gradlenexus/publishplugin/JavaVersionInCompatTest.kt b/src/compatTest/kotlin/io/github/gradlenexus/publishplugin/JavaVersionInCompatTest.kt new file mode 100644 index 00000000..c954ae45 --- /dev/null +++ b/src/compatTest/kotlin/io/github/gradlenexus/publishplugin/JavaVersionInCompatTest.kt @@ -0,0 +1,27 @@ +/* + * Copyright 2018 the original author or authors. + * + * Licensed 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. + */ + +package io.github.gradlenexus.publishplugin + +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.fail + +class JavaVersionInCompatTest { + + @Test fun test() { + fail(System.getProperty("java.version").toString()) + } +} diff --git a/src/e2eTest/kotlin/io/github/gradlenexus/publishplugin/e2e/JavaVersionInE2ETest.kt b/src/e2eTest/kotlin/io/github/gradlenexus/publishplugin/e2e/JavaVersionInE2ETest.kt new file mode 100644 index 00000000..c9d7ce59 --- /dev/null +++ b/src/e2eTest/kotlin/io/github/gradlenexus/publishplugin/e2e/JavaVersionInE2ETest.kt @@ -0,0 +1,27 @@ +/* + * Copyright 2018 the original author or authors. + * + * Licensed 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. + */ + +package io.github.gradlenexus.publishplugin.e2e + +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.fail + +class JavaVersionInE2ETest { + + @Test fun test() { + fail(System.getProperty("java.version").toString()) + } +} diff --git a/src/test/kotlin/io/github/gradlenexus/publishplugin/JavaVersionUnitTest.kt b/src/test/kotlin/io/github/gradlenexus/publishplugin/JavaVersionUnitTest.kt new file mode 100644 index 00000000..5abca4e2 --- /dev/null +++ b/src/test/kotlin/io/github/gradlenexus/publishplugin/JavaVersionUnitTest.kt @@ -0,0 +1,27 @@ +/* + * Copyright 2018 the original author or authors. + * + * Licensed 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. + */ + +package io.github.gradlenexus.publishplugin + +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.fail + +class JavaVersionUnitTest { + + @Test fun test() { + fail(System.getProperty("java.version").toString()) + } +}