File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
eng/pipelines/performance/templates Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,29 @@ steps:
78
78
workingDirectory : $(Build.SourcesDirectory)/artifacts/bin
79
79
displayName : clean bindir
80
80
81
+ # CoreCLR JIT static linking build
82
+ - script : make run TARGET_ARCH=arm64 DEPLOY_AND_RUN=false RUNTIME_FLAVOR=CoreCLR STATIC_LINKING=true
83
+ workingDirectory : $(Build.SourcesDirectory)/src/mono/sample/Android
84
+ displayName : Build HelloAndroid sample app RUNTIME_FLAVOR=CoreCLR STATIC_LINKING=true
85
+ - task : PublishBuildArtifacts@1
86
+ condition : succeededOrFailed()
87
+ displayName : ' Publish binlog'
88
+ inputs :
89
+ pathtoPublish : $(Build.SourcesDirectory)/src/mono/sample/Android/msbuild.binlog
90
+ artifactName : AndroidCoreCLRArm64StaticLinkingBuildLog
91
+ - template : /eng/pipelines/common/upload-artifact-step.yml
92
+ parameters :
93
+ rootFolder : $(Build.SourcesDirectory)/artifacts/bin/AndroidSampleApp/arm64/Release/android-arm64/Bundle/bin/HelloAndroid.apk
94
+ includeRootFolder : true
95
+ displayName : Android Sample App JIT CoreCLR Static Linking
96
+ artifactName : AndroidHelloWorldArm64CoreCLRStaticLinking
97
+ archiveExtension : ' .tar.gz'
98
+ archiveType : tar
99
+ tarCompression : gz
100
+ - script : rm -r -f $(Build.SourcesDirectory)/artifacts/bin/AndroidSampleApp
101
+ workingDirectory : $(Build.SourcesDirectory)/artifacts/bin
102
+ displayName : clean bindir
103
+
81
104
# CoreCLR R2R build
82
105
- script : make run TARGET_ARCH=arm64 DEPLOY_AND_RUN=false RUNTIME_FLAVOR=CoreCLR R2R=true
83
106
workingDirectory : $(Build.SourcesDirectory)/src/mono/sample/Android
You can’t perform that action at this time.
0 commit comments