update to gradle action v4 #968
Workflow file for this run
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
name: Check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
gradle-properties-version: [ 242, 243-SNAPSHOT ] | |
runs-on: ubuntu-latest | |
env: | |
ORG_GRADLE_PROJECT_shortPlatformVersion: ${{ matrix.gradle-properties-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: 21 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-read-only: false | |
cache-cleanup: never | |
# - name: Setup dependencies | |
# uses: gradle/actions/setup-gradle@v3 | |
# with: | |
# gradle-version: wrapper | |
# cache-read-only: false | |
# arguments: ":resolveDependencies -Pkotlin.incremental=false --no-daemon" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion | |
- name: Build | |
run: ./gradlew assemble --stacktrace -Pkotlin.incremental=false | |
# with: | |
# gradle-version: wrapper | |
# arguments: "assemble testClasses -Pkotlin.incremental=false --no-daemon --stacktrace" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion | |
# - name: Build | |
# uses: gradle/actions/setup-gradle@v3 | |
# with: | |
# gradle-version: wrapper | |
# arguments: "assemble testClasses -Pkotlin.incremental=false --no-daemon --stacktrace" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion | |
- name: Tests | |
run: ./gradlew test --stacktrace -Pkotlin.incremental=false | |
# with: | |
# gradle-version: wrapper | |
# arguments: ":test -Pkotlin.incremental=false --no-daemon --stacktrace" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion | |
# - name: Tests | |
# uses: gradle/actions/setup-gradle@v3 | |
# with: | |
# gradle-version: wrapper | |
# arguments: ":test -Pkotlin.incremental=false --no-daemon --stacktrace" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion | |
- name: Verify plugin.xml | |
run: ./gradlew verifyPluginConfiguration | |
# with: | |
# gradle-version: wrapper | |
# arguments: ":verifyPluginConfiguration -Pkotlin.incremental=false --no-daemon" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion | |
# - name: Verify plugin.xml | |
# uses: gradle/actions/setup-gradle@v3 | |
# with: | |
# gradle-version: wrapper | |
# arguments: ":verifyPluginConfiguration -Pkotlin.incremental=false --no-daemon" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion | |
- name: Verify plugin | |
run: ./gradlew verifyPlugin | |
# - name: Verify plugin | |
# uses: gradle/actions/setup-gradle@v3 | |
# with: | |
# gradle-version: wrapper | |
# arguments: ":verifyPlugin -Pkotlin.incremental=false --no-daemon" | |
# gradle-home-cache-cleanup: true | |
# gradle-home-cache-excludes: | | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.pycharm | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.idea | |
# caches/modules-2/files-2.1/com.jetbrains.intellij.clion |