Bug - SDMS Pipeline Documentation Does Not Work
I am going through the process of installing SDMS using ADO pipelines. There are some issues in the documentation that need to be resolved for this service to be deployable
- When creating the library variable group, there are variables defined with periods in them (
utest.mount.dir
andutest.runtime.image
). I'm not sure how you tested the code, but I don't think this is allowed and was throwing errors for me. - SDMS has a custom build stage. Similar to the deploy stage used by other services, it references the ADO variable group for the service. The issue is that the naming convention other services are using is
${{ provider.name }} Service Release - ${{ parameters.serviceName }}
and SDMS is usingR3MVP - ${{ provider.name }} Service Release - ${{ parameters.serviceName }}
. The SDMS variable group name reference ought to be changed I think. See here for where this is in SDMS code and here for where it is for code other service pipelines reference.
Edited by Daniel Scholl