From 499327c92d78e510b2d863e0c641ec317acc846d Mon Sep 17 00:00:00 2001 From: mlykotom Date: Tue, 25 Apr 2023 19:56:24 +0200 Subject: [PATCH] Fix steps Change-Id: I1e4f6da4b8c00715bcddcb0a6b5535d70852cfb6 --- .github/workflows/Build.yaml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Build.yaml b/.github/workflows/Build.yaml index 5bc5a3f83..5c3a318d2 100644 --- a/.github/workflows/Build.yaml +++ b/.github/workflows/Build.yaml @@ -104,10 +104,23 @@ jobs: needs: build runs-on: macOS-latest # enables hardware acceleration in the virtual machine timeout-minutes: 55 - strategy: - matrix: - api-level: [ 30 ] + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Copy CI gradle.properties + run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties + + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: 11 + + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + - name: Verify performance tests uses: reactivecircus/android-emulator-runner@v2 with: