From dd351409d7674abe4671e82249019e69d6e25464 Mon Sep 17 00:00:00 2001 From: Varac <varac@varac.net> Date: Thu, 6 Oct 2022 10:32:32 +0200 Subject: [PATCH] Disable cypress video compression Closes: #1075, #1074 --- .gitlab-ci.yml | 1 + CHANGELOG.md | 5 +++++ Chart.yaml | 2 +- cypress.config.js | 4 +++- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6816c929..6a1958d5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,6 +22,7 @@ include: - values.yaml - Chart.yaml - .gitlab-ci.yml + - cypress.config.js stages: - lint-helm-chart diff --git a/CHANGELOG.md b/CHANGELOG.md index 91cf4820..65fb2999 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.13.2] - 2022-10-06 + +* Disable Cypress video compression +* Only upload Cypress video on failure + ## [0.13.0] - 2022-08-25 * Enable redis for NC, managed by the NC dependency redis chart. diff --git a/Chart.yaml b/Chart.yaml index 68bc71af..a35c29d6 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -4,7 +4,7 @@ description: | A helm chart for installing NextCloud and setting up ONLYOFFICE integration name: nextcloud-onlyoffice appVersion: NC-24.0.5-OO-7.2.0.204 -version: 0.13.1 +version: 0.13.2 icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg dependencies: # https://artifacthub.io/packages/helm/nextcloud/nextcloud diff --git a/cypress.config.js b/cypress.config.js index 79b326ed..ad633613 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -18,5 +18,7 @@ module.exports = defineConfig({ // https://docs.cypress.io/guides/references/configuration#Timeouts // Nextcloud and especially Onlyoffice load slow so we need to increase // the global timeout - defaultCommandTimeout: 30000 + defaultCommandTimeout: 30000, + videoCompression: false, + videoUploadOnPasses: false }); -- GitLab