Fix Gradle setup action

NightlyBaselineProfiles only used the wrapper validation action, which has been deprecated, and merged as default in the main setup action.
pull/1638/head
Simon Marquis 1 year ago committed by GitHub
parent f42afb5aa7
commit 1b3d111f75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -18,9 +18,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
@ -30,6 +27,11 @@ jobs:
distribution: 'zulu'
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-cleanup: true
- name: Setup GMD
run: ./gradlew :benchmarks:pixel6Api33Setup
--info

Loading…
Cancel
Save