The setup-gradle
action should make it easy to run with wrapper in an OS-agnostic way
#308
Labels
invalid
This doesn't seem right
Now that the
arguments
parameter has been removed, it's inconvenient to write a matrix Job that tests against Windows and Ubuntu. This is because the execution step needs to differentiate between./gradlew
on Ubuntu andgradlew.bat
on Windows.To fix this, we should:
gradle-version: 'wrapper'
does not cause Gradle wrapper to be used #273 so that setting the version towrapper
allows thegradle
command to execute a local wrapper if available.gradle-version: wrapper
the default.We could also make
gradle-version: wrapper
to fail if no wrapper is present, and havegradle-version: wrapper-or-path
as the default.The text was updated successfully, but these errors were encountered: