fix(ci)_: remove workspace and tmp dir

This ensures we do not encounter weird errors like:
```
+ ln -s /home/jenkins/workspace/go_prs_linux_x86_64_main_PR-5907 /home/jenkins/workspace/go_prs_linux_x86_64_main_PR-5907@tmp/go/src/github.com/status-im/status-go
ln: failed to create symbolic link '/home/jenkins/workspace/go_prs_linux_x86_64_main_PR-5907@tmp/go/src/github.com/status-im/status-go': File exists
script returned exit code 1
```

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-10-23 14:16:46 +02:00
parent 679391999f
commit c72f491324
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
4 changed files with 15 additions and 6 deletions

View File

@ -85,6 +85,9 @@ pipeline {
post { post {
success { script { github.notifyPR(true) } } success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } } failure { script { github.notifyPR(false) } }
cleanup { sh 'make deep-clean' } cleanup {
cleanWs()
dir("${env.WORKSPACE}@tmp") { deleteDir() }
}
} // post } // post
} // pipeline } // pipeline

View File

@ -89,6 +89,9 @@ pipeline {
post { post {
success { script { github.notifyPR(true) } } success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } } failure { script { github.notifyPR(false) } }
cleanup { sh 'make deep-clean' } cleanup {
cleanWs()
dir("${env.WORKSPACE}@tmp") { deleteDir() }
}
} // post } // post
} // pipeline } // pipeline

View File

@ -92,6 +92,9 @@ pipeline {
post { post {
success { script { github.notifyPR(true) } } success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } } failure { script { github.notifyPR(false) } }
cleanup { sh 'make deep-clean' } cleanup {
cleanWs()
dir("${env.WORKSPACE}@tmp") { deleteDir() }
}
} // post } // post
} // pipeline } // pipeline

View File

@ -238,8 +238,8 @@ pipeline {
} }
} }
cleanup { cleanup {
dir(env.TMPDIR) { deleteDir() } cleanWs()
sh "make git-clean" dir("${env.WORKSPACE}@tmp") { deleteDir() }
} }
} // post } // post
} // pipeline } // pipeline