Skip to content

Commit

Permalink
Revert "ci: Update actions/upload-artifact to v4 (#13489)"
Browse files Browse the repository at this point in the history
This reverts commit 14e56c7.
  • Loading branch information
lforst committed Aug 28, 2024
1 parent 73f9172 commit 08a3e71
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
with:
name: build-output
path: ${{ env.CACHED_BUILD_PATHS }}
retention-days: 4
retention-days: 7
compression-level: 6
overwrite: true

Expand Down Expand Up @@ -345,7 +345,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
retention-days: 90
path: |
${{ github.workspace }}/packages/browser/build/bundles/**
${{ github.workspace }}/packages/replay-internal/build/bundles/**
Expand Down Expand Up @@ -599,13 +598,11 @@ jobs:
run: yarn test:ci${{ matrix.project && format(' --project={0}', matrix.project) || '' }}${{ matrix.shard && format(' --shard={0}/{1}', matrix.shard, matrix.shards) || '' }}

- name: Upload Playwright Traces
uses: actions/upload-artifact@v4
if: failure()
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-traces-job_browser_playwright_tests-${{ matrix.bundle}}-${{matrix.project}}-${{matrix.shard || '0'}}
name: playwright-traces
path: dev-packages/browser-integration-tests/test-results
overwrite: true
retention-days: 7

job_browser_loader_tests:
name: PW ${{ matrix.bundle }} Tests
Expand Down Expand Up @@ -651,13 +648,11 @@ jobs:
cd dev-packages/browser-integration-tests
yarn test:loader
- name: Upload Playwright Traces
uses: actions/upload-artifact@v4
if: failure()
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-traces-job_browser_loader_tests-${{ matrix.bundle}}
name: playwright-traces
path: dev-packages/browser-integration-tests/test-results
overwrite: true
retention-days: 7

job_check_for_faulty_dts:
name: Check for faulty .d.ts files
Expand Down Expand Up @@ -1281,7 +1276,6 @@ jobs:
with:
name: ${{ steps.process.outputs.artifactName }}
path: ${{ steps.process.outputs.artifactPath }}
retention-days: 7

job_compile_bindings_profiling_node:
name: Compile & Test Profiling Bindings (v${{ matrix.node }}) ${{ matrix.target_platform || matrix.os }}, ${{ matrix.node || matrix.container }}, ${{ matrix.arch || matrix.container }}, ${{ contains(matrix.container, 'alpine') && 'musl' || 'glibc' }}
Expand Down

0 comments on commit 08a3e71

Please sign in to comment.