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
If you add any Github SCM material - the gomatic configuration will fail with:
File ".../venv3/lib/python3.8/site-packages/gomatic/gocd/materials.py", line 28, in Materials
raise RuntimeError("don't know of material matching " + ET.tostring(element, 'utf-8'))
For python3 you need to fix that to raise RuntimeError("don't know of material matching " + str(ET.tostring(element, 'utf-8'))) and you get a RuntimeError: don't know of material matching b'<scm ref="<uuid>" />\n '
I don't how the Github SCM works and if GitMaterial could be reused (the UI selectors in gocd look very similar)
The text was updated successfully, but these errors were encountered:
https://github.com/ashwanthkumar/gocd-build-github-pull-requests is used by many in combination with gocd to build and verify PRs
If you add any Github SCM material - the gomatic configuration will fail with:
For python3 you need to fix that to
raise RuntimeError("don't know of material matching " + str(ET.tostring(element, 'utf-8')))
and you get aRuntimeError: don't know of material matching b'<scm ref="<uuid>" />\n '
I don't how the Github SCM works and if GitMaterial could be reused (the UI selectors in gocd look very similar)
The text was updated successfully, but these errors were encountered: