Skip to content

Commit

Permalink
Fix actions/upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
retyui committed Aug 8, 2023
1 parent 42b35b7 commit 3b24a85
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android-and-ios-github-actions-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-report-${{ matrix.recipe_uuid }}
name: e2e-report-${{ matrix.api-level }}-${{ matrix.arch }}-${{ matrix.target }}
path: |
${{ github.workspace }}/*.mp4
${{ github.workspace }}/*.png
Expand All @@ -137,7 +137,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-debug-logs-${{ matrix.recipe_uuid }}
name: e2e-debug-logs-${{ matrix.api-level }}-${{ matrix.arch }}-${{ matrix.target }}
path: ~/.maestro/tests/**/*


Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-report-${{ matrix.recipe_uuid }}
name: e2e-report-ios
path: |
${{ github.workspace }}/*.mp4
${{ github.workspace }}/*.png
Expand All @@ -196,5 +196,5 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-debug-logs-${{ matrix.recipe_uuid }}
name: e2e-debug-logs-ios
path: ~/.maestro/tests/**/*
6 changes: 3 additions & 3 deletions .github/workflows/android-buildjet-ubuntu-amd64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
fail-fast: false
max-parallel: 10
max-parallel: 5
matrix:
arch: [x86, x86_64]
# ^^^ `runs-on: buildjet-2vcpu-ubuntu-2204` doesn't support `arm64-v8a`
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-report-${{ matrix.recipe_uuid }}
name: e2e-report-${{ matrix.api-level }}-${{ matrix.arch }}-${{ matrix.target }}
path: |
${{ github.workspace }}/*.mp4
${{ github.workspace }}/*.png
Expand All @@ -130,5 +130,5 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-debug-logs-${{ matrix.recipe_uuid }}
name: e2e-debug-logs-${{ matrix.api-level }}-${{ matrix.arch }}-${{ matrix.target }}
path: ~/.maestro/tests/**/*
9 changes: 4 additions & 5 deletions .github/workflows/android-github-actions-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on: [push, pull_request]

jobs:
run_android_e2e:
timeout-minutes: 45
timeout-minutes: 90
runs-on: ubuntu-latest

strategy:
fail-fast: false
max-parallel: 4
max-parallel: 8
matrix:
arch: [x86, x86_64]
# ^^^ `runs-on: ubuntu-*` doesn't support `arm64-v8a`
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-report-${{ matrix.recipe_uuid }}
name: e2e-report-${{ matrix.api-level }}-${{ matrix.arch }}-${{ matrix.target }}
path: |
${{ github.workspace }}/*.mp4
${{ github.workspace }}/*.png
Expand All @@ -112,6 +112,5 @@ jobs:
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-debug-logs-${{ matrix.recipe_uuid }}
name: e2e-debug-logs-${{ matrix.api-level }}-${{ matrix.arch }}-${{ matrix.target }}
path: ~/.maestro/tests/**/*

0 comments on commit 3b24a85

Please sign in to comment.