Skip to content

Commit 4044882

Browse files
committed
Merge pull request #49 in MCU16CE/pic24f-hello-world-uart from ~I15232/pic24f-hello-world-uart:feature/pic24-hello-world-example to develop
* commit '53238cc1401957b8ed29054b11714a5bc1f64787': Release creation stage only check was done based on repo name , organization was not considered because of this release was getting updated to the first repo found in the search not necessarily in the intended organization. Now URL is passed as an argument during release creation step. There was an issue with the tag name(removed the prefix v , which was causing the issue of duplicate tags) Removed license.md removed archiving of artifacts Template/example mandatory files
2 parents 83f61ef + 53238cc commit 4044882

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.citd/Jenkinsfilek8s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pipeline {
8585
def jsonObj = readJsonObject();
8686

8787
withCredentials([usernamePassword(credentialsId: "${env.BITBUCKET_CREDENTIAL_ID}", passwordVariable: 'PASS', usernameVariable: 'USER_NAME')]) {
88-
execute("python tool-github-deploy/tool-github-deploy/tool-github-deploy.py -bto=true -rpn=\"${jsonObj.content.projectName}\" -bid=$USER_NAME -bpat=$PASS -bpn=MCU16CE -btv=\"${jsonObj.content.version}\" -bch=${env.GIT_COMMIT} -btd=\"v${jsonObj.content.version}\"")
88+
execute("python tool-github-deploy/tool-github-deploy/tool-github-deploy.py -bto=true -rpn=\"${jsonObj.content.projectName}\" -bid=$USER_NAME -bpat=$PASS -bpn=MCU16CE -btv=\"${jsonObj.content.version}\" -bch=${env.GIT_COMMIT} -btd=\"${jsonObj.content.version}\"")
8989
}
9090
}
9191
}
@@ -159,7 +159,7 @@ pipeline {
159159
def jsonObj = readJsonObject();
160160

161161
withCredentials([usernamePassword(credentialsId: "${env.GITHUB_CREDENTIAL_ID}", passwordVariable: 'PASS', usernameVariable: 'USER_NAME')]) {
162-
execute("python tool-github-deploy/tool-github-deploy/tool-github-deploy.py -rlo=true -gpat=$PASS -rpn=\"${jsonObj.content.projectName}\" -rltv=\"v${jsonObj.content.version}\" -rltt=\"${jsonObj.content.version}\" -rlnp=${env.CHANGE_LOG_PATH}")
162+
execute("python tool-github-deploy/tool-github-deploy/tool-github-deploy.py -rlo=true -gpat=$PASS -rporg=${env.GITHUB_URL} -rpn=\"${jsonObj.content.projectName}\" -rltv=\"${jsonObj.content.version}\" -rltt=\"${jsonObj.content.version}\" -rlnp=${env.CHANGE_LOG_PATH}")
163163
}
164164
}
165165
}

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,9 @@ Users will see the string "Hello World !!!" being continuously printed on the se
4040
![image](images/serial_terminal.jpg)
4141

4242

43+
44+
- - -
45+
46+
© 2020, Microchip Technology Inc.
47+
48+

0 commit comments

Comments
 (0)