Skip to content

Commit

Permalink
add java 17 ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Feb 10, 2024
1 parent ac47faa commit e5a5b2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
- job_name: Java 11
JAVA_HOME: C:\Program Files\Java\jdk11
# - job_name: Java 16
# appveyor_build_worker_image: Visual Studio 2019
# JAVA_HOME: C:\Program Files\Java\jdk16
- job_name: Java 17
appveyor_build_worker_image: Visual Studio 2019
JAVA_HOME: C:\Program Files\Java\jdk17

build_script:
- ./gradlew assemble --no-daemon
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Java ${{ matrix.java }}
strategy:
matrix:
java: [8, 11]
java: [8, 11, 17]

steps:
- uses: actions/checkout@v2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package ru.vyarus.gradle.plugin.pom

import groovy.xml.XmlParser
import spock.lang.IgnoreIf

/**
* @author Vyacheslav Rusakov
* @since 14.01.2020
*/
@IgnoreIf({jvm.java17Compatible}) // only gradle 7.3 supports java 17
class LegacyKitTest extends AbstractKitTest {

String GRADLE_VERSION = '7.0'
Expand Down

0 comments on commit e5a5b2e

Please sign in to comment.