Skip to content

Commit ad09554

Browse files
author
Jarno Lamsa
committed
Add CI builds for DISCO_F769NI
Make a release build and smoke-test build
1 parent 01cf0dc commit ad09554

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Jenkinsfile

+3
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ def build_test_config = [
110110
["NUCLEO_F303RE", "mbed_app.json", "GCC_ARM"],
111111
["NUCLEO_F411RE", "mbed_app.json", "GCC_ARM"],
112112
["NUCLEO_F429ZI", "mbed_app.json", "GCC_ARM"],
113+
["DISCO_F769NI", "mbed_app.json", "GCC_ARM"],
113114

114115
// Bootloaders for just testing the build
115116
["NRF52840_DK", "configs/kvstore_and_fw_candidate_on_sd.json", "GCC_ARM"],
@@ -131,6 +132,7 @@ def build_test_config = [
131132
["DISCO_L475VG_IOT01A", "configs/internal_kvstore_with_qspif.json", "GCC_ARM"],
132133
["LPC55S69_NS", "configs/psa.json", "GCC_ARM"],
133134
["NUCLEO_F303RE", "configs/internal_kvstore_with_spif.json", "GCC_ARM"],
135+
["DISCO_F769NI", "configs/internal_flash_no_rot.json", "GCC_ARM"],
134136
]
135137

136138

@@ -255,6 +257,7 @@ def smoke_test_config = [
255257
"NUCLEO_F303RE": ["toolchains": [ "GCC_ARM"], "raas": "https://auli.mbedcloudtesting.com:443"],
256258
"NUCLEO_F411RE": ["toolchains": [ "GCC_ARM"], "raas": "https://ruka.mbedcloudtesting.com:443"],
257259
"NUCLEO_F429ZI": ["toolchains": [ "GCC_ARM"], "raas": "https://ruka.mbedcloudtesting.com:443"],
260+
"DISCO_F769NI": ["toolchains": [ "GCC_ARM"], "raas": "https://rauni.mbedcloudtesting.com:443"],
258261
]
259262

260263
for (target in smoke_test_config.keySet()) {

scripts/make_release.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@
5656
("NUCLEO_F411RE", "kvstore_and_fw_candidate_on_sd"), # cloud client
5757
("DISCO_L475VG_IOT01A", "internal_kvstore_with_qspif"), # cloud client
5858
("LPC55S69_NS", "psa"), # cloud client
59-
("NUCLEO_F303RE", "internal_kvstore_with_spif") # cloud client
59+
("NUCLEO_F303RE", "internal_kvstore_with_spif"), # cloud client
60+
("DISCO_F769NI", "internal_flash_no_rot")
6061
]
6162
toolchain = "GCC_ARM"
6263
profile = "release" # default value, changed via command line arg --profile

0 commit comments

Comments
 (0)