I need to setup Jenkins to use a Mercurial Repository hosted on BitBucket but running into issues when the job tries to poll the repository.
Example URL:
I'm also attempting to align inside Jenkins 'Global Tool Configuration' as listed below:
I have also attempted to align the Jenkins job as listed:
When the job polls the SCM I'am seeing the following message:
Started on Jul 4, 2019 3:13:00 PM
Polling SCM changes on master
FATAL: SCM revision state is not a Mercurial one
java.io.IOException: SCM revision state is not a Mercurial one
at hudson.plugins.mercurial.MercurialSCM.compareRemoteRevisionWith(MercurialSCM.java:410)
at hudson.scm.SCM.compareRemoteRevisionWith(SCM.java:400)
at hudson.scm.SCM.poll(SCM.java:417)
at hudson.model.AbstractProject.pollWithWorkspace(AbstractProject.java:1412)
at hudson.model.AbstractProject._poll(AbstractProject.java:1382)
at hudson.model.AbstractProject.poll(AbstractProject.java:1293)
at hudson.triggers.SCMTrigger$Runner.runPolling(SCMTrigger.java:603)
at hudson.triggers.SCMTrigger$Runner.run(SCMTrigger.java:649)
at hudson.util.SequentialExecutionQueue$QueueEntry.run(SequentialExecutionQueue.java:119)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Done. Took 2 ms
No changes
Please note my instance of Jenkins is running in the AWS cloud and uses a Ubuntu.
Any ideas?