如何让 CircleCI 使用特定的 Gradle 版本?

How to make CircleCI use a specific Gradle version?

它仍在使用 2.14.1,而我想要 3.3:
尽管有以下 circle.yml:

machine:
  environment:
    PATH: "~/$CIRCLE_PROJECT_REPONAME/gradle-3.3/bin:$PATH"
    TERM: "dumb"
    ADB_INSTALL_TIMEOUT: "10"
    GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
  java:
    version: oraclejdk8

dependencies:
  pre:
    # Install Android stuffs
    - wget "https://services.gradle.org/distributions/gradle-3.3-bin.zip"; unzip gradle-3.3-bin.zip
    - echo y | android update sdk --no-ui --all --filter tool
    - echo y | android update sdk --no-ui --all --filter extra-android-m2repository
    - echo y | android update sdk --no-ui --all --filter extra-android-support
    - echo y | android update sdk --no-ui --all --filter extra-google-google_play_services
    - echo y | android update sdk --no-ui --all --filter extra-google-m2repository
    - echo y | android update sdk --no-ui --all --filter android-25
    - echo y | android update sdk --no-ui --all --filter build-tools-25.0.2
test:
  override:
    # start the emulator
    - emulator -avd circleci-android19 -no-audio -no-window:
        background: true
        parallel: true
    # wait for it to have booted
    - circle-android wait-for-boot
    # unlock the emulator screen
    - sleep 30
    - adb shell input keyevent 82

错误的版本可能是 gradle dependencies 在这里对我失败的原因:

yourProject/gradle/wrapper/gradle-wrapper.properties"中可以定义gradle版本。像这样:

distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip `

更新

我认为没有必要 wget "https://services.gradle.org/distributions/gradle-3.3-bin.zip" 因为当 CI 调用 ./gradlew 时,它会自动下载 gradle。