Skip to content

Commit

Permalink
Alpha 0.2.6 (#2232)
Browse files Browse the repository at this point in the history
* bump 0.2.6

* Double Cypress timeouts when running on CI

---------

Co-authored-by: Vítor Vasconcellos <[email protected]>
  • Loading branch information
utkubakir and HeavenVolkoff committed Mar 23, 2024
1 parent e148028 commit 904f210
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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 <[email protected]>"]
default-run = "sd-desktop"
Expand Down
14 changes: 13 additions & 1 deletion apps/web/cypress.config.ts
@@ -1,11 +1,23 @@
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',
setupNodeEvents(on, config) {
// implement node event listeners here
}
},
video: true
video: true,
...(process.env.CI === 'true' ? ci_specific : {})
});
2 changes: 1 addition & 1 deletion 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"
Expand Down

0 comments on commit 904f210

Please sign in to comment.