Skip to content

Commit

Permalink
tmp: record and upload video run
Browse files Browse the repository at this point in the history
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Jan 3, 2025
1 parent d4ce307 commit 80ddadb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,16 +160,16 @@ jobs:
name: nc_logs_${{ matrix.containers }}
path: nextcloud.log

- name: Create data dir archive
- name: Create cypress dir archive
if: failure() && matrix.containers != 'component'
run: docker exec nextcloud-cypress-tests_server tar -cvjf - data > data.tar
run: docker exec nextcloud-cypress-tests_server tar -cvjf - cypress > cypress.tar

- name: Upload data dir archive
- name: Upload cypress dir archive
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: failure() && matrix.containers != 'component'
with:
name: nc_data_${{ matrix.containers }}
path: data.tar
name: nc_cypress_${{ matrix.containers }}
path: cypress.tar

summary:
runs-on: ubuntu-latest-low
Expand Down
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default defineConfig({
experimentalInteractiveRunEvents: true,

// faster video processing
video: !process.env.CI,
video: true,
videoCompression: false,

// Prevent elements to be scrolled under a top bar during actions (click, clear, type, etc). Default is 'top'.
Expand Down

0 comments on commit 80ddadb

Please sign in to comment.