<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Hi Jackie,</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
CI/CD can be thought of as 2 somewhat disconnected parts - build & automated testing. I know little about test automation, the current build set up is outlined below.</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
You would need a dedicated server:</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<ul data-editing-info="{"orderedStyleType":1,"unorderedStyleType":1}">
<li style="list-style-type: disc;">Linux : we currently use Debian 11, but it shouldn't matter since most build steps run in docker containers</li><li style="list-style-type: disc;">Docker</li><li style="list-style-type: disc;">Kubernetes</li><li style="list-style-type: disc;">Jenkins: integrated with k8s and able to run k8s pipelines</li><li style="list-style-type: disc;">git</li><li style="list-style-type: disc;" class="ContentPasted0">git-repo <a href="https://gerrit.googlesource.com/git-repo" id="LPlnk653389" class="OWAAutoLink">
https://gerrit.googlesource.com/git-repo</a></li></ul>
<div>Other prerequisites:</div>
<div>
<ul data-editing-info="{"orderedStyleType":1,"unorderedStyleType":1}">
<li style="list-style-type: disc;">You would need some DockerHub account to avoid DockerHub's rate limits when pulling images</li><li style="list-style-type: disc;">Once your ARM set up is ready we can replace that with a controlled account that we manage in order to push the images to Docker Hub.</li></ul>
</div>
<div class="ContentPasted1 ContentPasted2">Jenkins job definitions (Jenkinsfiles) are source-controlled here:
<a href="https://opendev.org/starlingx/jenkins-pipelines" id="LPNoLPOWALinkPreview" class="OWAAutoLink">
https://opendev.org/starlingx/jenkins-pipelines</a> . You would need to define Jenkins jobs manually in the GUI, and point them to the corresponding Jenkinsfiles in this git repo.<br>
</div>
<div class="ContentPasted1">
<ul data-editing-info="{"orderedStyleType":1,"unorderedStyleType":1}">
<li style="list-style-type: disc;">The repo itself acts as a pipeline library in Jenkins with shared functions under
<a href="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/vars" title="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/vars" data-loopstyle="linkonly" id="LPNoLPOWALinkPreview_27" class="OWAAutoLink">
vars/</a> . The library must be defined at Jenkins' folder level.<br>
<div style="list-style-type: disc;">
<div class="_Entity _EType_OWALinkPreview _EId_OWALinkPreview_42 _EReadonly_1"></div>
</div>
</li><li style="list-style-type: disc;"><a href="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/pipelines/monolithic.Jenkinsfile" title="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/pipelines/monolithic.Jenkinsfile" data-loopstyle="linkonly" id="LPNoLPOWALinkPreview_10" class="OWAAutoLink">pipelines/monolithic.Jenkinsfile</a>
 : top-level job that calls other jobs under parts/</li><li style="list-style-type: disc;"><a href="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/pipelines/parts" title="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/pipelines/parts" data-loopstyle="linkonly" id="LPNoLPOWALinkPreview_28" class="OWAAutoLink">pipelines/parts/</a>
 : directory containing sub-job Jenkinsfiles. You would create a Jenkins folder in the GUI called "parts" and define individual jobs pointing to individual Jenkinsfiles from this subdirectory in git repo</li><li style="list-style-type: disc;"><a href="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/scripts" title="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/scripts" data-loopstyle="linkonly" id="LPNoLPOWALinkPreview_29" class="OWAAutoLink">scripts/</a>
 : shell scripts that implement individual build steps (called by Jenkinsfiles)</li></ul>
</div>
<div class="_Entity _EType_OWALinkPreview _EId_OWALinkPreview_43 _EReadonly_1"></div>
Required directories on the server, owned by jenkins user:<br>
</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<ul data-editing-info="{"orderedStyleType":1,"unorderedStyleType":1}">
<li style="list-style-type: disc;">/localdisk/designer/jenkins/ root for per-project build areas</li><li style="list-style-type: disc;">/localdisk/loadbuild/jenkins/ root for per-project build archives</li></ul>
<div>At first execution the monolithic job will fail, but create an example configuration file in the project build area that you are expected to copy & edit:</div>
<div>
<ul data-editing-info="{"orderedStyleType":1,"unorderedStyleType":1}">
<li style="list-style-type: disc;">/localdisk/designer/jenkins/$PROJECT/build.cond.example<br>
</li></ul>
</div>
</div>
<div class="elementToProof ContentPasted3" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
There are many options with comments in it; the example file is also source controlled under
<a href="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/scripts/templates/build.conf.example.in" title="https://opendev.org/starlingx/jenkins-pipelines/src/branch/master/scripts/templates/build.conf.example.in" data-loopstyle="linkonly" id="LPNoLPOWALinkPreview_44">
scripts/templates/build.conf.example.in</a></div>
<div class="elementToProof ContentPasted3" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof ContentPasted3" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span class="ContentPasted3 ContentPasted4" style="font-size:12pt">Builds are slow and would greatly benefit from fast storage (SSDs etc).</span><br class="ContentPasted4">
<span class="ContentPasted3" style="font-size:12pt"></span><br>
</div>
<div class="elementToProof ContentPasted3" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Please start by familiarizing yourself with this repository and ping me if you have any more questions.</div>
<div class="elementToProof ContentPasted3" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
Hope this helps,
<div class="elementToProof ContentPasted3" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
D.<br>
</div>
<div class="_Entity _EType_OWALinkPreview _EId_OWALinkPreview_44 _EReadonly_1"></div>
<div style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div class="elementToProof" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div id="appendonsend"></div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size: 11pt; color: rgb(0, 0, 0);"><b>From:</b> Huang, Jie (Jackie) <Jackie.Huang@windriver.com><br>
<b>Sent:</b> August 9, 2023 10:28 AM<br>
<b>To:</b> Little, Scott <Scott.Little@windriver.com>; Panech, Davlet <Davlet.Panech@windriver.com>; Tianyu Li <Tianyu.Li@arm.com>; Wang, Linda <Linda.Wang@windriver.com><br>
<b>Cc:</b> starlingx-discuss@lists.starlingx.io <starlingx-discuss@lists.starlingx.io>; Scott Kamp <scott.kamp@xunison.com>; Trevor Tao <Trevor.Tao@arm.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com><br>
<b>Subject:</b> RE: StarlingX CI/CD setup on Arm platform</font>
<div> </div>
</div>
<div lang="EN-US" style="word-wrap:break-word">
<div class="x_WordSection1">
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
Hi Scott and Davlet,</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
As mentioned in the Multi-OS call, I’m re-sending this with all the questions about StarlingX CI/CD, please help answer as many as you can, thanks!</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
There would be 6 Arm servers contributed to our community for CI/CD (2 for build, 4 for testing of different deployment configs), what we want to know is:</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in; text-indent:-.25in">
<span style="mso-list:Ignore">1.<span style="font:7.0pt "Times New Roman"">      
</span></span>What’s the current status of StarlingX CICD for x86-64?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in; text-indent:-.25in">
<span style="mso-list:Ignore">2.<span style="font:7.0pt "Times New Roman"">      
</span></span>What needs to be done for the CICD workflow setup and how after the 6 ARM servers are ready and hosted in the lab?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.5in; text-indent:-.25in">
<span style="mso-list:Ignore">a.<span style="font:7.0pt "Times New Roman"">      
</span></span>E.g. how to setup build servers and testing env?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.5in; text-indent:-.25in">
<span style="mso-list:Ignore">b.<span style="font:7.0pt "Times New Roman"">      
</span></span>What CICD tools need to be setup? Zuul/Jenkins/etc.</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.5in; text-indent:-.25in">
<span style="mso-list:Ignore">c.<span style="font:7.0pt "Times New Roman"">      
</span></span>Are there any docs or info of the steps for these setups?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in; text-indent:-.25in">
<span style="mso-list:Ignore">3.<span style="font:7.0pt "Times New Roman"">      
</span></span>How many efforts and how long will it take?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in; text-indent:-.25in">
<span style="mso-list:Ignore">4.<span style="font:7.0pt "Times New Roman"">      
</span></span>Can this only be done by specific person? Or anyone have permission to access to the servers? If the later, I think Tianyu from Arm team and I can also help</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
on that if we got enough information.</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
Tianyu, please add if you have any other questions.</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
Thanks,</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
Jackie</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;">
 </p>
<div>
<div style="border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in">
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
<b><span style="">From:</span></b><span style=""> Huang, Jie (Jackie) <br>
<b>Sent:</b> Monday, July 31, 2023 12:57 PM<br>
<b>To:</b> Trevor Tao <Trevor.Tao@arm.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>; Little, Scott <Scott.Little@windriver.com>; Scott Kamp <scott.kamp@xunison.com><br>
<b>Cc:</b> starlingx-discuss@lists.starlingx.io<br>
<b>Subject:</b> RE: StarlingX CI/CD setup on Arm platform</span></p>
</div>
</div>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
Hi, Scott Kamp and Scott Little,</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
I found the following actions in the meeting minutes in <a href="https://etherpad.opendev.org/p/stx-status" data-auth="NotApplicable" data-loopstyle="linkonly" id="OWAaaf341ce-31d9-51a8-6620-8eb5d1ed2482" class="OWAAutoLink">
stx-status | OpenDev Etherpad</a>:</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.5in; text-indent:-.25in">
<span style="font-size: 10pt; font-family: "Courier New"; color: rgb(62, 62, 62);"><span style="mso-list:Ignore">o<span style="font:7.0pt "Times New Roman"">   
</span></span></span><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);">ARM Support</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.75in; text-indent:-.25in">
<span style="font-size: 10pt; font-family: Wingdings; color: rgb(62, 62, 62);"><span style="mso-list:Ignore">§<span style="font:7.0pt "Times New Roman""> 
</span></span></span><u><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);">Action:</span></u><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);"> Scott Kamp to respond to Jackie/the mailing list to provide
 assistance/access to some arm machines</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.75in; text-indent:-.25in">
<span style="font-size: 10pt; font-family: Wingdings; color: rgb(62, 62, 62);"><span style="mso-list:Ignore">§<span style="font:7.0pt "Times New Roman""> 
</span></span></span><u><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);">Action:</span></u><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);"> Scott Little to respond regarding build questions</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:2.0in; text-indent:-.25in">
<span style="font-size: 10pt; font-family: Symbol; color: rgb(62, 62, 62);"><span style="mso-list:Ignore">·<span style="font:7.0pt "Times New Roman"">        
</span></span></span><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);">Cannot mirror more files on CENGN; will need to wait until we transition away from CENGN</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:2.0in; text-indent:-.25in">
<span style="font-size: 10pt; font-family: Symbol; color: rgb(62, 62, 62);"><span style="mso-list:Ignore">·<span style="font:7.0pt "Times New Roman"">        
</span></span></span><u><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);">Action:</span></u><span style="font-size: 11.5pt; font-family: Roboto; color: rgb(62, 62, 62);"> Scott Kamp to explore providing a hosting env temporarily</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
So I think you might be able to help on Trevor’s and my questions:</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
There would be 6 Arm servers contributed to our community for CI/CD (2 for build, 4 for testing of different deployment configs), what we want to know is:</p>
<ol type="1" style="margin-bottom: 0in;margin-top:0in">
<li class="x_MsoListParagraph" style="margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:0in">
What needs to be done for the CICD workflow setup and how? </li></ol>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.5in; text-indent:-.25in">
<span style="mso-list:Ignore">a.<span style="font:7.0pt "Times New Roman"">      
</span></span>E.g. how to setup build servers and testing env?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.5in; text-indent:-.25in">
<span style="mso-list:Ignore">b.<span style="font:7.0pt "Times New Roman"">      
</span></span>What CICD tools need to be setup? Zuul/Jenkins/etc.</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.5in; text-indent:-.25in">
<span style="mso-list:Ignore">c.<span style="font:7.0pt "Times New Roman"">      
</span></span>Are there any docs for these setups?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in; text-indent:-.25in">
<span style="mso-list:Ignore">2.<span style="font:7.0pt "Times New Roman"">      
</span></span>How many efforts and how long will it take?</p>
<p class="x_MsoListParagraph" style="margin-top: 0px; margin-bottom: 0px;margin: 0in 0in 0in 0.5in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in; text-indent:-.25in">
<span style="mso-list:Ignore">3.<span style="font:7.0pt "Times New Roman"">      
</span></span>Is there a CICD team or someone that can help on the setup or just providing useful information?</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
Thanks,</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
Jackie</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:.5in">
 </p>
<div>
<div style="border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in">
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<b><span style="">From:</span></b><span style=""> Trevor Tao <<a href="mailto:Trevor.Tao@arm.com" data-loopstyle="linkonly" id="OWA8e51e621-fc14-a5ab-16c8-d53898265088" class="OWAAutoLink">Trevor.Tao@arm.com</a>>
<br>
<b>Sent:</b> Thursday, July 27, 2023 5:06 PM<br>
<b>To:</b> Geary, Stephen (Steve) <<a href="mailto:Steve.Geary@windriver.com" data-loopstyle="linkonly" id="OWA825805f9-fe13-0626-887c-31f8b90fa6e0" class="OWAAutoLink">Steve.Geary@windriver.com</a>>;
<a href="mailto:starlingx-discuss@lists.starlingx.io" data-loopstyle="linkonly" id="OWAb00bf71c-d64f-961d-43f6-123aafeb6599" class="OWAAutoLink">
starlingx-discuss@lists.starlingx.io</a><br>
<b>Cc:</b> Huang, Jie (Jackie) <<a href="mailto:Jackie.Huang@windriver.com" data-loopstyle="linkonly" id="OWAde8503e4-9648-f4b5-61fe-6610dce9edbc" class="OWAAutoLink">Jackie.Huang@windriver.com</a>><br>
<b>Subject:</b> StarlingX CI/CD setup on Arm platform</span></p>
</div>
</div>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
Hi Steve, StarlingX:</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
>From the <a href="https://urldefense.com/v3/__https:/etherpad.opendev.org/p/stx-distro-other__;!!AjveYdw8EvQ!e07vSdClUS6f5DohQ4EQeAEzsC4SnjZH2Vb3mjeau1FjCuAnkaGqf1_1vuARZRPcPxdw8dZJN-D3pMmWKHLvhCs$" data-auth="NotApplicable" data-loopstyle="linkonly" id="OWAd45d3272-00e0-7ba0-9f8c-592928300470" class="OWAAutoLink">
OS distro meeting</a> yesterday, we knew that there would be 6 Arm servers contributed to our community to do the CI/CD related work.
</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
So we would like to ask who can help on the setup of CI/CD environment on the arm platform, and any other useful information/details for the CI/CD issue here.</p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
Thanks, </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:10.5pt">Best Regards,</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:10.5pt"> </span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:10.5pt">Zijin Tao(Trevor Tao, </span><span lang="ZH-CN" style="font-size:10.5pt; font-family:"微软雅黑",sans-serif">陶孜谨</span><span style="font-size:10.5pt">)</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:10.5pt">ARM Electronic Technology (Shanghai) Co., Ltd</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span lang="ZH-CN" style="font-size:10.5pt; font-family:宋体">安谋电子科技(上海)有限公司</span><span style="font-size:10.5pt"></span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:10.5pt">Building 11, Shanghai Busininess Park</span><span lang="ZH-CN" style="font-size: 10pt; font-family: 宋体; color: rgb(51, 51, 51);">Ⅲ</span><span style="font-size:10.5pt"> ,</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:10.5pt">No.1016 Tianlin Rd, Minhang District, Shanghai, 200233 China</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span lang="ZH-CN" style="font-size:10.5pt; font-family:宋体">上海市闵行区田林路</span><span style="font-size:10.5pt; font-family:宋体">1016<span lang="ZH-CN">号科技绿洲三期</span>2<span lang="ZH-CN">号楼</span>10<span lang="ZH-CN">楼,</span></span><span style="font-size:10.5pt">200233</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:10.5pt">Cell:      +86-153 7109 6192</span></p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
 </p>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;margin: 0in; font-size: 11pt; font-family: "Calibri", sans-serif;margin-left:1.0in">
<span style="font-size:12.0pt; font-family:宋体">IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the
 contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
</span></p>
</div>
</div>
</body>
</html>