RDK Resources
[*RDK Preferred*]
Code Management Facility
RDK Forums
[RDK Conferences]
RDK Support
Archives
Papers & Presentations Archive
...
After the automated deployment job execution, user has to configure the artifact repository details in maven settings.xml in automatics_jenkins docker to maven deploy the automatics artifacts. This is required for test execution, as maven artifacts of automatics-core, test-utils are pulled from artifact repo during execution.The below configurations needs to be available in Automatics Orchestration, Automatics Properties, Device Manager and Jenkins jobs inorder to trigger a successful Test case execution from Automatics Orchestration
<profile>
<id>rdk-repo</id>
<repositories>
<repository>
<id>rdk-repo</id>
<url>Add artifactory repository url here</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
<servers>
<server>
<id>rdk-repo</id>
<username></username>
<password></password>
</server>
<activeProfiles>
<activeProfile>rdk-repo</activeProfile>
</activeProfiles>
More details about maven settings.xml configuration can be referred from https://maven.apache.org/settings.html
The below set of jobs will be created after successful completion of Automated Build and Deployment execution.
...