Skip to content

Commit

Permalink
test(ci): do not pre-compress logs sent to upload-archive action (#7478)
Browse files Browse the repository at this point in the history
GHA artifacts are already compressed using zip, no need to compress them twice
  • Loading branch information
chipitsine authored Nov 28, 2023
1 parent 918f0dd commit c368a82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/tests_e2e_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,14 +249,9 @@ jobs:
path: .yarn/cache
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }}

- name: Compress Emulator Log
if: always()
run: gzip -9 adb-*.txt
shell: bash

- name: Upload Emulator Log
uses: actions/upload-artifact@v3
if: always()
with:
name: adb_logs
path: adb-*.gz
path: adb-*.txt
6 changes: 1 addition & 5 deletions .github/workflows/tests_e2e_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,16 +187,12 @@ jobs:
timeout-minutes: 50
run: yarn tests:ios:test-cover

- name: Compress Simulator Log
if: always()
run: gzip -9 simulator.log

- name: Upload Simulator Log
uses: actions/upload-artifact@v3
if: always()
with:
name: simulator_log
path: simulator.log.gz
path: simulator.log

- uses: codecov/codecov-action@v3
with:
Expand Down

1 comment on commit c368a82

@vercel
Copy link

@vercel vercel bot commented on c368a82 Nov 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.