Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zip build directories before uploading #1157

Merged
merged 2 commits into from
Feb 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Zip build directories before uploading
  • Loading branch information
jingtang10 committed Feb 9, 2022
commit 9cf09fd63b344abd9de7707af9fe88315bc83882
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,19 +129,23 @@ jobs:
name: maven-repository
path: build/ci-repo

- name: Zip artifact for deployment
run: zip build.zip ./*/build -r

# Upload the build dir for all the modules for diagnosis
- name: Upload build dir
if: always()
uses: actions/upload-artifact@v2
with:
name: build
path: ./*/build
path: build.zip

- name: Copy test results
if: always()
run: |
mkdir -p test-results
find . -type f -regex ".*[t|androidT]est-results/.*xml" -exec cp {} test-results/ \;

- name: Upload test results
if: always()
uses: actions/upload-artifact@v2
Expand Down