Skip to content

Commit 673e1cd

Browse files
Jammu KekkonenSeppo Takalo
Jammu Kekkonen
authored and
Seppo Takalo
committed
Add NUCLEO F303RE internal kvstore with spif to release.
1 parent 72c35fc commit 673e1cd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ def build_test_config = [
108108
// Bootloaders for just testing the build
109109
["NRF52840_DK", "configs/kvstore_and_fw_candidate_on_sd.json", "GCC_ARM"],
110110
["NUCLEO_L073RZ", "configs/kvstore_and_fw_candidate_on_sd.json", "GCC_ARM"],
111-
["NUCLEO_F303RE", "configs/internal_kvstore_with_spif.json", "GCC_ARM"],
112111
["DISCO_L475VG_IOT01A", "configs/external_kvstore_with_qspif.json", "GCC_ARM"],
113112

114113
// Bootloaders for release.
@@ -122,6 +121,7 @@ def build_test_config = [
122121
["NUCLEO_F411RE", "configs/kvstore_and_fw_candidate_on_sd.json", "GCC_ARM"],
123122
["DISCO_L475VG_IOT01A", "configs/internal_kvstore_with_qspif.json", "GCC_ARM"],
124123
["LPC55S69_NS", "configs/psa.json", "GCC_ARM"],
124+
["NUCLEO_F303RE", "configs/internal_kvstore_with_spif.json", "GCC_ARM"],
125125
]
126126

127127

scripts/make_release.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444
),
4545
"internal_kvstore_with_qspif": (
4646
"configs/internal_kvstore_with_qspif.json", "internal-kvstore", "qspif"
47+
),
48+
"internal_kvstore_with_spif": (
49+
"configs/internal_kvstore_with_spif.json", "internal-kvstore", "spif"
4750
)
4851
}
4952
# format: ("target", "config_name")
@@ -56,7 +59,8 @@
5659
("UBLOX_EVK_ODIN_W2", "internal_kvstore_with_sd"), # cloud client
5760
("NUCLEO_F411RE", "kvstore_and_fw_candidate_on_sd"), # cloud client
5861
("DISCO_L475VG_IOT01A", "internal_kvstore_with_qspif"), # cloud client
59-
("LPC55S69_NS", "psa") # cloud client
62+
("LPC55S69_NS", "psa"), # cloud client
63+
("NUCLEO_F303RE", "internal_kvstore_with_spif") # cloud client
6064
]
6165
toolchain = "GCC_ARM"
6266
profile = "tiny.json" # default value, changed via command line arg --profile

0 commit comments

Comments
 (0)