diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6816c929b3561f7c3b32d8849c11783e1d3438b0..6a1958d55860c8af3a1eece70c946e3565cf3168 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 91cf4820eba19fa9c5b9f7d7fca5bb46155c6532..65fb2999fd41677347f73d71fbfe3d49a8ec4466 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 68bc71af50313bd6588ad1202770f8b5ea7f82ef..a35c29d61aade62a1018c2d311fa7268b4ffb7e8 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 79b326ed8499e82bff7db8b4d69d2b53d3a44726..ad6336133d077a483ec50eb3f89f0214c5c41cf4 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 });