Alpha 0.2.6 (#2232)

* bump 0.2.6

* Double Cypress timeouts when running on CI

---------

Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
This commit is contained in:
Utku
2024-03-22 21:27:11 -04:00
committed by GitHub
parent a5c25b94ab
commit ff6a2f0d60
4 changed files with 15 additions and 3 deletions

BIN
Cargo.lock generated
View File

Binary file not shown.

View File

@@ -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 <support@spacedrive.com>"]
default-run = "sd-desktop"

View File

@@ -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 : {})
});

View File

@@ -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"