Skip to content

Commit c368a82

Browse files
authored
test(ci): do not pre-compress logs sent to upload-archive action (#7478)
GHA artifacts are already compressed using zip, no need to compress them twice
1 parent 918f0dd commit c368a82

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/tests_e2e_android.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -249,14 +249,9 @@ jobs:
249249
path: .yarn/cache
250250
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }}
251251

252-
- name: Compress Emulator Log
253-
if: always()
254-
run: gzip -9 adb-*.txt
255-
shell: bash
256-
257252
- name: Upload Emulator Log
258253
uses: actions/upload-artifact@v3
259254
if: always()
260255
with:
261256
name: adb_logs
262-
path: adb-*.gz
257+
path: adb-*.txt

.github/workflows/tests_e2e_ios.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,16 +187,12 @@ jobs:
187187
timeout-minutes: 50
188188
run: yarn tests:ios:test-cover
189189

190-
- name: Compress Simulator Log
191-
if: always()
192-
run: gzip -9 simulator.log
193-
194190
- name: Upload Simulator Log
195191
uses: actions/upload-artifact@v3
196192
if: always()
197193
with:
198194
name: simulator_log
199-
path: simulator.log.gz
195+
path: simulator.log
200196

201197
- uses: codecov/codecov-action@v3
202198
with:

0 commit comments

Comments
 (0)