You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.
When using vagrant plugin and running job in jenkins slave, following error is reported:
There is no Vagrantfile in your workspace!
We looked in: /var/lib/jenkins/workspace/korppi-openuniv-studyright-service-vagrant-2
Recording test results
No test report files were found. Configuration error?
Finished: NOT_BUILT
However slave contains Vagrantfile in the given location.
It seems that the check is performed in the code is not properly using slaves resources:
unless FilePath.exists? FilePath.join(path, 'Vagrantfile')
listener.info("There is no Vagrantfile in your workspace!")
listener.info("We looked in: #{path}")
build.native.setResult(Java.hudson.model.Result::NOT_BUILT)
build.halt
end
The text was updated successfully, but these errors were encountered:
@pnuz3n The problem is that the Ruby plugin code for Jenkins only executes on the Jenkins master. As of right now there is no means of executing Vagrant on a slave :(
When using vagrant plugin and running job in jenkins slave, following error is reported:
However slave contains Vagrantfile in the given location.
It seems that the check is performed in the code is not properly using slaves resources:
The text was updated successfully, but these errors were encountered: