Skip to content

Commit 13083a2

Browse files
authored
Configure artifact upload for workflows (#4022)
1 parent d7eac87 commit 13083a2

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/fireperf-e2e.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,12 @@ jobs:
105105
assignees: ['jeremyjiang-dev', 'leotianlizhan', 'raymondlam', 'visumickey']
106106
});
107107
}
108+
- name: Upload test artifacts
109+
if: always()
110+
uses: actions/upload-artifact@v3
111+
with:
112+
name: test-artifacts (${{ matrix.environment }})
113+
path: |
114+
~/.m2/repository/com/google/firebase/perf-plugin
115+
**/build/reports
116+
**/build/test-results

.github/workflows/smoke-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,13 @@ jobs:
5757
BUILD_ID: ${{ github.run_id }}
5858
ARTIFACTS: ${{ runner.temp }}
5959
run: java -jar runner.jar smoke-tests/runner.config
60+
61+
- name: Upload test artifacts
62+
if: always()
63+
uses: actions/upload-artifact@v3
64+
with:
65+
name: smoke-tests-artifacts
66+
path: |
67+
${{ runner.temp }}/**/*.apk
68+
${{ runner.temp }}/**/changed-artifacts.json
69+
${{ runner.temp }}/**/smoke-test-dependencies.log

0 commit comments

Comments
 (0)