12
12
// from ARM Limited or its affiliates.
13
13
// ----------------------------------------------------------------------------
14
14
15
- repoName = " mbed-bootloader-internal "
15
+ repoName = " mbed-bootloader"
16
16
17
17
// This build archives artifacts at build stage and later on copies artifacts
18
18
// on the later state. Permission is needed for copying, even for the job itself.
@@ -108,7 +108,6 @@ def build_test_config = [
108
108
// Bootloaders for just testing the build
109
109
[" NRF52840_DK" , " configs/kvstore_and_fw_candidate_on_sd.json" , " GCC_ARM" ],
110
110
[" NUCLEO_L073RZ" , " configs/kvstore_and_fw_candidate_on_sd.json" , " GCC_ARM" ],
111
- [" NUCLEO_F303RE" , " configs/internal_kvstore_with_spif.json" , " GCC_ARM" ],
112
111
[" DISCO_L475VG_IOT01A" , " configs/external_kvstore_with_qspif.json" , " GCC_ARM" ],
113
112
114
113
// Bootloaders for release.
@@ -122,6 +121,7 @@ def build_test_config = [
122
121
[" NUCLEO_F411RE" , " configs/kvstore_and_fw_candidate_on_sd.json" , " GCC_ARM" ],
123
122
[" DISCO_L475VG_IOT01A" , " configs/internal_kvstore_with_qspif.json" , " GCC_ARM" ],
124
123
[" LPC55S69_NS" , " configs/psa.json" , " GCC_ARM" ],
124
+ [" NUCLEO_F303RE" , " configs/internal_kvstore_with_spif.json" , " GCC_ARM" ],
125
125
]
126
126
127
127
@@ -218,7 +218,7 @@ def SmokeTestStep(step_name,
218
218
219
219
deleteDir()
220
220
unstash " deployed_bootloader_repo"
221
- copyArtifacts filter : ' **/mbed-bootloader-internal .*' , projectName : ' ${JOB_NAME}' , selector : specific(' ${BUILD_NUMBER}' )
221
+ copyArtifacts filter : ' **/mbed-bootloader.*' , projectName : ' ${JOB_NAME}' , selector : specific(' ${BUILD_NUMBER}' )
222
222
dir(' TESTS/smoke' ) {
223
223
sh " ./build.sh ${ target} "
224
224
sh " ls"
@@ -261,7 +261,7 @@ def ReleaseStep() {
261
261
dir(repoName) {
262
262
deleteDir()
263
263
unstash " deployed_bootloader_repo"
264
- copyArtifacts filter : ' **/mbed-bootloader-internal *' , projectName : ' ${JOB_NAME}' , selector : specific(' ${BUILD_NUMBER}' )
264
+ copyArtifacts filter : ' **/mbed-bootloader*' , projectName : ' ${JOB_NAME}' , selector : specific(' ${BUILD_NUMBER}' )
265
265
sh ' mkdir release'
266
266
sh ' python2 ./scripts/make_release.py -o release --prebuilt'
267
267
archiveArtifacts artifacts : ' release/*'
0 commit comments