Skip to content

Commit

Permalink
Add NUCLEO F303RE internal kvstore with spif to release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jammu Kekkonen authored and Seppo Takalo committed Nov 20, 2019
1 parent 72c35fc commit 673e1cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ def build_test_config = [
// Bootloaders for just testing the build
["NRF52840_DK", "configs/kvstore_and_fw_candidate_on_sd.json", "GCC_ARM"],
["NUCLEO_L073RZ", "configs/kvstore_and_fw_candidate_on_sd.json", "GCC_ARM"],
["NUCLEO_F303RE", "configs/internal_kvstore_with_spif.json", "GCC_ARM"],
["DISCO_L475VG_IOT01A", "configs/external_kvstore_with_qspif.json", "GCC_ARM"],

// Bootloaders for release.
Expand All @@ -122,6 +121,7 @@ def build_test_config = [
["NUCLEO_F411RE", "configs/kvstore_and_fw_candidate_on_sd.json", "GCC_ARM"],
["DISCO_L475VG_IOT01A", "configs/internal_kvstore_with_qspif.json", "GCC_ARM"],
["LPC55S69_NS", "configs/psa.json", "GCC_ARM"],
["NUCLEO_F303RE", "configs/internal_kvstore_with_spif.json", "GCC_ARM"],
]


Expand Down
6 changes: 5 additions & 1 deletion scripts/make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
),
"internal_kvstore_with_qspif": (
"configs/internal_kvstore_with_qspif.json", "internal-kvstore", "qspif"
),
"internal_kvstore_with_spif": (
"configs/internal_kvstore_with_spif.json", "internal-kvstore", "spif"
)
}
# format: ("target", "config_name")
Expand All @@ -56,7 +59,8 @@
("UBLOX_EVK_ODIN_W2", "internal_kvstore_with_sd"), # cloud client
("NUCLEO_F411RE", "kvstore_and_fw_candidate_on_sd"), # cloud client
("DISCO_L475VG_IOT01A", "internal_kvstore_with_qspif"), # cloud client
("LPC55S69_NS", "psa") # cloud client
("LPC55S69_NS", "psa"), # cloud client
("NUCLEO_F303RE", "internal_kvstore_with_spif") # cloud client
]
toolchain = "GCC_ARM"
profile = "tiny.json" # default value, changed via command line arg --profile
Expand Down

0 comments on commit 673e1cd

Please sign in to comment.