ci: Fix fetch depth in benchmark (no-changelog) (#10532)

This commit is contained in:
Tomi Turtiainen 2024-08-23 16:06:43 +03:00 committed by GitHub
parent 47839c936d
commit 29dd153df1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,7 +107,7 @@ async function ensureVmIsReachable(sshClient) {
async function transferScriptsToVm(sshClient) {
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';
}