2016-04-25 243 views
1

我在構建項目時從Jenkins那裏獲取Failure構建郵件。我不確定這是什麼意思。直到我的其他團隊成員之一向我們的SVN服務器提交新數據之前,此構建已多次運行。現在構建不會「識別」工作區。有一個link,它有相同的錯誤,但最終沒有解決我的問題。Jenkins構建工作區失敗

Started by user Chris Parsons 
Building in workspace C:\Program Files (x86)\Jenkins\jobs\iLaundry - Installer Builder\workspace 
Checking out a fresh workspace because there's no workspace at C:\Program Files (x86)\Jenkins\jobs\iLaundry - Installer Builder\workspace 
Cleaning local Directory . 
java.nio.file.FileSystemException: C:\Program Files (x86)\Jenkins\jobs\iLaundry - Installer Builder\workspace\.\.svn\wc.db: The process cannot access the file because it is being used by another process. 

    at sun.nio.fs.WindowsException.translateToIOException(Unknown Source) 
    at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source) 
    at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source) 
    at sun.nio.fs.WindowsFileSystemProvider.implDelete(Unknown Source) 
    at sun.nio.fs.AbstractFileSystemProvider.delete(Unknown Source) 
    at java.nio.file.Files.delete(Unknown Source) 
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 
    at java.lang.reflect.Method.invoke(Unknown Source) 
    at hudson.Util.deleteFile(Util.java:239) 
    at hudson.Util.deleteRecursive(Util.java:307) 
    at hudson.Util.deleteContentsRecursive(Util.java:204) 
    at hudson.Util.deleteRecursive(Util.java:298) 
    at hudson.Util.deleteContentsRecursive(Util.java:204) 
    at hudson.scm.subversion.CheckoutUpdater$1.perform(CheckoutUpdater.java:75) 
    at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:161) 
    at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:169) 
    at hudson.scm.subversion.UpdateUpdater$TaskImpl.perform(UpdateUpdater.java:133) 
    at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:161) 
    at hudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:1004) 
    at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:985) 
    at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:961) 
    at hudson.FilePath.act(FilePath.java:916) 
    at hudson.FilePath.act(FilePath.java:889) 
    at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:910) 
    at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:845) 
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1411) 
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:652) 
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:88) 
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:557) 
    at hudson.model.Run.execute(Run.java:1665) 
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46) 
    at hudson.model.ResourceController.execute(ResourceController.java:88) 
    at hudson.model.Executor.run(Executor.java:246) 
Finished: FAILURE 

對我在做什麼有什麼建議嗎?

回答

0

所以當我忙於另一個問題時,我找到了答案。詹金斯建立了${JENKINS_HOME}/Workspace/${ITEM_FULLNAME}文件夾,但我正在構建的項目有它自己的工作區,所以我需要做的就是更改目錄。它的工作完美。