1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-07 13:34:02 +02:00

Disable Gradle configuration cache in CI tests

With gradle plugin 2.0 this cache fails on GitHub Actions. This solution is temporlly and generally the `integrationsTest` should be migrated from `doLast` to some other task approach
This commit is contained in:
Alex Plate 2024-07-10 09:02:26 +03:00
parent e22fd263cc
commit d5bddd077f
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -27,7 +27,7 @@ jobs:
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Run tests
run: ./gradlew integrationsTest
run: ./gradlew --no-configuration-cache integrationsTest
env:
YOUTRACK_TOKEN: ${{ secrets.YOUTRACK_TOKEN }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}