mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
ci: Fix fetch depth in benchmark (no-changelog) (#10532)
This commit is contained in:
parent
47839c936d
commit
29dd153df1
|
@ -107,7 +107,7 @@ async function ensureVmIsReachable(sshClient) {
|
||||||
async function transferScriptsToVm(sshClient) {
|
async function transferScriptsToVm(sshClient) {
|
||||||
await sshClient.ssh('rm -rf ~/n8n');
|
await sshClient.ssh('rm -rf ~/n8n');
|
||||||
|
|
||||||
await sshClient.ssh('git clone --depth=0 https://github.com/n8n-io/n8n.git');
|
await sshClient.ssh('git clone --depth=1 https://github.com/n8n-io/n8n.git');
|
||||||
|
|
||||||
return '~/n8n/packages/@n8n/benchmark/scripts/runOnVm';
|
return '~/n8n/packages/@n8n/benchmark/scripts/runOnVm';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue