Skip to content

Commit

Permalink
Instrumentation and screenshot workflows should be run on macOS agents
Browse files Browse the repository at this point in the history
  • Loading branch information
mmartosdev committed Apr 24, 2024
1 parent 5bd9aa5 commit d7c000e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
category: detekt
- name: Upload failure artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: reports
path: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

instrumentation-tests:
name: Instrumentation tests
runs-on: ubuntu-latest
runs-on: macOS-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
-Dorg.gradle.jvmargs=-Xmx2048m
- name: Upload failed instrumentation artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: instrumentation-failures
path: |
Expand All @@ -128,7 +128,7 @@ jobs:
screenshot-tests:
name: Screenshot tests
runs-on: ubuntu-latest
runs-on: macOS-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
Expand All @@ -153,7 +153,7 @@ jobs:
-Pandroid.experimental.testOptions.managedDevices.emulator.showKernelLogging=true
- name: Upload failed screenshot artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: screenshot-failures
path: |
Expand Down

0 comments on commit d7c000e

Please sign in to comment.