From ff6a2f0d60ad554197a51d552fed14cb1f7cfb8a Mon Sep 17 00:00:00 2001 From: Utku <74243531+utkubakir@users.noreply.github.com> Date: Fri, 22 Mar 2024 21:27:11 -0400 Subject: [PATCH] Alpha 0.2.6 (#2232) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * bump 0.2.6 * Double Cypress timeouts when running on CI --------- Co-authored-by: VĂ­tor Vasconcellos --- Cargo.lock | Bin 279541 -> 279541 bytes apps/desktop/src-tauri/Cargo.toml | 2 +- apps/web/cypress.config.ts | 14 +++++++++++++- core/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f521ee2cc5e45eefcf92f18f02223dc469b388a4..17435d97aa7e13cc0ef53917edf86eca7b279834 100644 GIT binary patch delta 37 rcmey`F8H-wu%U%<3)8$WlN&9?w{QKzRL%inwLAZ1+V1?9d6OFeN(2zh delta 37 rcmey`F8H-wu%U%<3)8$WlN%Gnwr}~uRKWpawLAS~+V1q1d9xb;PXiGb diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 7afb98c3b..c5829bf93 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sd-desktop" -version = "0.2.5" +version = "0.2.6" description = "The universal file manager." authors = ["Spacedrive Technology Inc "] default-run = "sd-desktop" diff --git a/apps/web/cypress.config.ts b/apps/web/cypress.config.ts index 6f92aa001..0c246f3fb 100644 --- a/apps/web/cypress.config.ts +++ b/apps/web/cypress.config.ts @@ -1,5 +1,16 @@ import { defineConfig } from 'cypress'; +const ci_specific = { + // Double all the default timeouts + // https://docs.cypress.io/guides/references/configuration#Timeouts + defaultCommandTimeout: 4000 * 2, + execTimeout: 60000 * 2, + taskTimeout: 60000 * 2, + pageLoadTimeout: 60000 * 2, + requestTimeout: 5000 * 2, + responseTimeout: 30000 * 2 +}; + export default defineConfig({ e2e: { baseUrl: 'http://localhost:8002', @@ -7,5 +18,6 @@ export default defineConfig({ // implement node event listeners here } }, - video: true + video: true, + ...(process.env.CI === 'true' ? ci_specific : {}) }); diff --git a/core/Cargo.toml b/core/Cargo.toml index 5752ba7eb..ba45f09b7 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sd-core" -version = "0.2.5" +version = "0.2.6" description = "Virtual distributed filesystem engine that powers Spacedrive." authors = ["Spacedrive Technology Inc."] rust-version = "1.75.0"