Skip to content

Commit 59ddd49

Browse files
author
Microchip Technology
committedJan 14, 2022
Initial commit
1 parent 0acd2f1 commit 59ddd49

File tree

7 files changed

+359
-1
lines changed

7 files changed

+359
-1
lines changed
 

‎.citd/Jenkinsfilek8s

+265
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,265 @@
1+
/*
2+
Jenkins Shared Library:
3+
----------------------
4+
shared-library-mcu16ce - https://bitbucket.microchip.com/scm/citd/shared-library-mcu16ce.git
5+
shared-library-common - https://bitbucket.microchip.com/scm/citd/shared-library-common.git
6+
*/
7+
@Library(['shared-library-mcu16ce@master', 'shared-library-common@master']) _
8+
9+
pipeline {
10+
agent {
11+
kubernetes {
12+
defaultContainer 'xc16-mplabx-sonar-fmpp-python'
13+
yamlFile '.citd/cloudprovider.yml'
14+
}
15+
}
16+
17+
environment {
18+
/*
19+
Common Information
20+
*/
21+
NOTIFICATION_EMAIL = 'e50beea8.microchip.com@amer.teams.ms'
22+
// GitHub production organization name
23+
GITHUB_PRODUCTION_ORGANIZATION = "microchip-pic-avr-solutions"
24+
25+
/*
26+
GitHub Deploy Stage Information
27+
*/
28+
//This is the BitBucket source repo URL to be deployed
29+
BITBUCKET_SOURCE_URL = 'https://bitbucket.microchip.com/scm/mcu16ce/pic24e-dspic33e-code-examples.git'
30+
//Files or folders to be excluded from deployment, if multiple files or folders use comma separator
31+
DEPLOY_EXCLUDE_FOLDER_FILE_LIST = 'mchp_private,.mchp_private,sandbox,.sandbox'
32+
//Branch(s) to be deployed, if multiple branches use comma separator. DEPLOY_BRANCH_LIST is the target branch of the PR.
33+
DEPLOY_BRANCH_LIST = "master"
34+
35+
/*
36+
GitHub Page Stage Information
37+
List of GitHub Page Options:
38+
----------------------------
39+
1. GITHUB_PAGES_NONE ( Branch: None, index file path: None )
40+
2. GITHUB_PAGES_MASTER_ROOT ( Branch: Master, index file path: /root )
41+
3. GITHUB_PAGES_MASTER_DOCS ( Branch: Develop, index file path: /Docs )
42+
4. GITHUB_PAGES_DEVELOP_ROOT ( Branch: Master, index file path: /root )
43+
5. GITHUB_PAGES_DEVELOP_DOCS ( Branch: Develop, index file path: /Docs )
44+
*/
45+
GITHUB_PAGES = 'GITHUB_PAGES_NONE'
46+
47+
/*
48+
Project Build Stage Information
49+
*/
50+
MPLABX_PROJECT_SOURCE = "../"
51+
}
52+
53+
options {
54+
timestamps()
55+
timeout(time: 20, unit: 'MINUTES')
56+
}
57+
58+
stages {
59+
stage('Checkout') {
60+
steps {
61+
checkout scm
62+
}
63+
}
64+
65+
stage('project config update') {
66+
steps {
67+
script {
68+
mplabxProjectConfigUpdate(
69+
sourceFilePath: "${env.MPLABX_PROJECT_SOURCE}"
70+
)
71+
}
72+
}
73+
}
74+
75+
stage('Build') {
76+
steps {
77+
script {
78+
mplabxProjectBuild(
79+
sourceFilePath: "${env.MPLABX_PROJECT_SOURCE}"
80+
)
81+
}
82+
}
83+
}
84+
85+
86+
//MisraCheck code analysis
87+
stage('MISRA Check') {
88+
steps {
89+
script {
90+
misraCheck(
91+
sourceProjectPath: "${env.MPLABX_PROJECT_SOURCE}"
92+
)
93+
}
94+
}
95+
}
96+
97+
// Validate main.json file
98+
stage('Validate main.json') {
99+
steps {
100+
script {
101+
validateMetaData()
102+
}
103+
}
104+
}
105+
106+
// Creating tag in Bitbucket repo
107+
stage('Bitbucket Tag Creation') {
108+
when {
109+
anyOf {
110+
allOf {
111+
not { changeRequest() }
112+
anyOf {branch 'master';}
113+
}
114+
}
115+
}
116+
117+
steps {
118+
script {
119+
bitbucketTagCreation()
120+
}
121+
}
122+
}
123+
124+
stage('Doxygen files generation') {
125+
when {
126+
anyOf {
127+
allOf {
128+
not { changeRequest() }
129+
}
130+
}
131+
}
132+
steps {
133+
container('buildtools') {
134+
script {
135+
doxygen()
136+
}
137+
}
138+
}
139+
}
140+
141+
// GitHub repo creation
142+
stage('GitHub Repo Creation') {
143+
when {
144+
anyOf {
145+
allOf {
146+
not { changeRequest() }
147+
anyOf {branch 'master'; branch 'test_deploy';}
148+
}
149+
}
150+
}
151+
152+
steps {
153+
script {
154+
githubRepoCreate(
155+
githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}",
156+
deployBranchList: "${DEPLOY_BRANCH_LIST}"
157+
)
158+
}
159+
}
160+
}
161+
162+
// Deploying the code to GitHub
163+
stage('GitHub Deploy Source') {
164+
when {
165+
anyOf {
166+
allOf {
167+
not { changeRequest() }
168+
anyOf {branch 'master'; branch 'test_deploy';}
169+
}
170+
}
171+
}
172+
173+
steps {
174+
script {
175+
githubDeploySource(
176+
bitbucketUrl: "${env.BITBUCKET_SOURCE_URL}",
177+
deployBranchList: "${env.DEPLOY_BRANCH_LIST}",
178+
deployExcludeFileList: "${env.DEPLOY_EXCLUDE_FOLDER_FILE_LIST}",
179+
githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}"
180+
)
181+
}
182+
}
183+
}
184+
185+
// Creating GitHub release
186+
stage('GitHub release') {
187+
when {
188+
anyOf {
189+
allOf {
190+
not { changeRequest() }
191+
anyOf {branch 'master'; branch 'test_deploy';}
192+
}
193+
}
194+
}
195+
196+
steps {
197+
script {
198+
githubReleaseCreate(
199+
githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}",
200+
deployBranchList: "${DEPLOY_BRANCH_LIST}"
201+
)
202+
}
203+
}
204+
}
205+
206+
// Creating GitHub Page
207+
stage('GitHub Page Create') {
208+
when {
209+
anyOf {
210+
allOf {
211+
not { changeRequest() }
212+
anyOf {branch 'master';}
213+
}
214+
}
215+
}
216+
217+
steps {
218+
script {
219+
githubPageCreate(
220+
githubPage: "${env.GITHUB_PAGES}",
221+
githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}"
222+
)
223+
}
224+
}
225+
}
226+
227+
//Deploying the Github content to portal
228+
stage('Portal-Deploy') {
229+
when {
230+
allOf {
231+
not { changeRequest() }
232+
anyOf {branch 'master';}
233+
}
234+
}
235+
steps {
236+
script {
237+
portalDeploy(
238+
githubOrgName: "${env.GITHUB_PRODUCTION_ORGANIZATION}"
239+
)
240+
}
241+
}
242+
}
243+
}
244+
245+
post {
246+
success{
247+
script {
248+
sendMail(
249+
mailId: "${env.NOTIFICATION_EMAIL}",
250+
subject: "Successful Pipeline: ${currentBuild.fullDisplayName}",
251+
body: "Something is right with ${env.BUILD_URL}"
252+
)
253+
}
254+
}
255+
failure {
256+
script {
257+
sendMail(
258+
mailId: "${env.NOTIFICATION_EMAIL}",
259+
subject: "Failure Pipeline: ${currentBuild.fullDisplayName}",
260+
body: "Something is right with ${env.BUILD_URL}"
261+
)
262+
}
263+
}
264+
}
265+
}

‎.citd/cloudprovider.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
apiVersion: v1
2+
kind: Pod
3+
metadata:
4+
name: xc16-mplabx-sonar-fmpp-python
5+
spec:
6+
containers:
7+
- name: xc16-mplabx-sonar-fmpp-python
8+
image: artifacts.microchip.com:7999/microchip/citd/bundles/xc16-mplabx-sonar-fmpp-python-yarn-node:latest
9+
imagePullPolicy: Always
10+
command: ['cat']
11+
tty: true
12+
resources:
13+
requests:
14+
cpu: 500m
15+
memory: 1500Mi
16+
limits:
17+
cpu: 1
18+
memory: 2Gi
19+
- name: buildtools
20+
image: artifacts.microchip.com:7999/microchip/buildtools/doxygen:1.8.15-r0
21+
imagePullPolicy: Always
22+
command: ['cat']
23+
tty: true
24+
resources:
25+
requests:
26+
cpu: 500m
27+
memory: 750Mi
28+
limits:
29+
cpu: 1
30+
memory: 1Gi

‎.main-meta/main.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"metaDataVersion":"1.0.0",
3+
"category":"com.microchip.ide.project",
4+
"content":{
5+
"metaDataVersion":"1.3.0",
6+
"name":"com.microchip.mplabx.project.pic24e-dspic33e-code-examples",
7+
"version":"x.x.x",
8+
"displayName":"xxxxxxxxxxxxxxx",
9+
"projectName":"pic24e-dspic33e-code-examples",
10+
"shortDescription":"xxxxxxxxxxxxxxx",
11+
"ide":{
12+
"name":"MPLABX",
13+
"semverRange":">=5.40.0"
14+
},
15+
"compiler":{
16+
"name":"XC16",
17+
"semverRange":"^1.50.0"
18+
},
19+
"dfp":{
20+
"name":"xxxxxxxxxxxxxxx",
21+
"semverRange":">=x.x.x"
22+
},
23+
"configurator": {
24+
"name": "MCC",
25+
"semverRange": ">=4.0.1"
26+
},
27+
"device":{
28+
"metaDataVersion":"1.0.0",
29+
"category":"com.microchip.portal.contentRef",
30+
"content":{
31+
"metaDataVersion":"1.0.0",
32+
"category":"com.microchip.device",
33+
"name":"xxxxxxxxxxxxxxx",
34+
"versionRange":"*"
35+
}
36+
},
37+
"peripherals":[
38+
"GPIO",
39+
],
40+
"keywords":[
41+
"GPIO",
42+
"UART"
43+
]
44+
}
45+
}

‎LICENSE.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
© [2020] Microchip Technology Inc. and its subsidiaries
2+
3+
Subject to your compliance with these terms, you may use this Microchip software and any derivatives exclusively with Microchip products. You are responsible
4+
for complying with third party license terms applicable to your use of third party software (including open source software) that may accompany this Microchip
5+
software. SOFTWARE IS “AS IS.” NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT,
6+
MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL LOSS,
7+
DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE
8+
FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP’S TOTAL LIABILITY ON ALL CLAIMS RELATED TO THE SOFTWARE WILL NOT EXCEED AMOUNT OF FEES, IF ANY, YOU
9+
PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![image](images/microchip.jpg)
22

3-
## %repoDescritpion%
3+
## PIC24E DSPIC33E CODE EXAMPLES
44

55
Board Image if any.
66

‎changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Project Name or repo name release version
2+
### Release Highlights
3+
4+
5+
6+
### Features Added\Updated
7+
8+
9+

‎images/microchip.jpg

6.71 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.