ci: merge end-to-end workflow into ci, permits to reduce amount of built

This commit is contained in:
Edouard Vanbelle
2026-05-11 11:24:11 +02:00
parent cc14ec53ee
commit d8625b9f39
4 changed files with 250 additions and 267 deletions
+3 -1
View File
@@ -48,7 +48,9 @@ export default defineConfig({
],
webServer: {
command: process.env.CI ? `${process.env.GITHUB_WORKSPACE}/target/debug/oxicloud` : 'cargo run',
command: process.env.BUILD_TARGET
? `${process.env.GITHUB_WORKSPACE}/target/${process.env.BUILD_TARGET}/oxicloud`
: 'cargo run',
url: 'http://localhost:8087',
timeout: 600_000,
reuseExistingServer: false,