summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2023-03-28 13:18:49 +0200
committerLouis Chemineau <louis@chmn.me>2023-04-05 11:51:46 +0200
commitf057682da4bdab999c7e16940ec5a35c5d45aaa8 (patch)
tree9deca58747998db607533a411fbfedb9cce2a644 /.github
parent9d9934fd849697a585bd64d9eda63e0655dcb5b1 (diff)
downloadnextcloud-server-f057682da4bdab999c7e16940ec5a35c5d45aaa8.tar.gz
nextcloud-server-f057682da4bdab999c7e16940ec5a35c5d45aaa8.zip
Upload data dir archive in cypress tests
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cypress.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml
index 0967583ed2a..d5e3e8ce698 100644
--- a/.github/workflows/cypress.yml
+++ b/.github/workflows/cypress.yml
@@ -102,6 +102,17 @@ jobs:
name: nc_logs_${{ matrix.containers }}
path: nextcloud.log
+ - name: Create data dir archive
+ if: ( success() || failure() ) && matrix.containers != 'component'
+ run: docker exec nextcloud-cypress-tests-server tar -cvjf - data > data.tar
+
+ - name: Upload data dir archive
+ uses: actions/upload-artifact@v3
+ if: ( success() || failure() ) && matrix.containers != 'component'
+ with:
+ name: nc_data_${{ matrix.containers }}
+ path: data.tar
+
summary:
runs-on: ubuntu-latest
needs: [init, cypress]