2016-04-25 99 views
1

プロジェクトをビルドするときにJenkinsからビルドエラーメッセージが表示されます。私はこれが何を伴うのか分かりません。このビルドは、他のチームメンバーの1人が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は${JENKINS_HOME}/Workspace/${ITEM_FULLNAME}フォルダから構築しましたが、私が構築しているプロジェクトには独自のWorkspaceがありますので、私がする必要があったのはdirを変更することでした。それは完璧に働いた。

関連する問題