From 95ea6e9c7c7eb3aeed1524a7f1a426ff5997a811 Mon Sep 17 00:00:00 2001 From: lilinor Date: Tue, 12 Dec 2023 15:19:18 +0100 Subject: [PATCH 1/2] Update github action saas ci.yml --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c479d48..cab0b96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,28 +6,28 @@ jobs: strategy: matrix: recipe_uuid: - - ea5fda48-fa8b-48c1-8acc-07d910856141 # android 8.1 + - e104f058-b291-4764-8e0d-d9ff78a41192 # Android 11 - 70eaaf75-bd9a-406d-9f01-682a5d400c6e # Android 10 name: Run Espresso Tests steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: - python-version: "3.9.1" - architecture: "x64" + python-version: "3.10.11" - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - name: Set up JDK 17 + uses: actions/setup-java@v3 with: - java-version: 1.8 + java-version: "17" + distribution: "temurin" - name: Setup Android SDK uses: android-actions/setup-android@v2 - name: Genymotion - uses: genymobile/genymotion-saas-github-action@v0.1 + uses: genymobile/genymotion-saas-github-action@v0.4 with: email: ${{ secrets.GMSAAS_EMAIL }} password: ${{ secrets.GMSAAS_PASSWORD }} From b0435a708f61b8382d5dd47c76227f0014b7c2dd Mon Sep 17 00:00:00 2001 From: lilinor Date: Thu, 14 Dec 2023 15:24:57 +0100 Subject: [PATCH 2/2] Update ci.yml to be triggered on fork --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cab0b96..cdbd3f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -on: [push] +on: [push, fork] jobs: Espresso: