Skip to content

Commit

Permalink
Merge pull request #8587 from dhalbert/lib-tlsf-ci_fetch_deps
Browse files Browse the repository at this point in the history
add lib/tlsf to tools/ci_fetch_deps.py
  • Loading branch information
dhalbert authored Nov 12, 2023
2 parents 7029f72 + 2f969a4 commit 166a98f
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions tools/ci_fetch_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,29 @@
"lib/protomatter/",
"lib/quirc/",
"lib/tinyusb/",
"lib/tlsf",
"data/nvm.toml/",
],
"broadcom": ["extmod/ulab/", "lib/tinyusb/"],
"cxd56": ["extmod/ulab/", "lib/tinyusb/"],
"broadcom": ["extmod/ulab/", "lib/tlsf", "lib/tinyusb/"],
"cxd56": ["extmod/ulab/", "lib/tlsf", "lib/tinyusb/"],
"espressif": [
"extmod/ulab/",
"lib/certificates/",
"lib/protomatter/",
"lib/quirc/",
"lib/tlsf",
"lib/tinyusb/",
],
"litex": ["extmod/ulab/", "lib/tinyusb/"],
"mimxrt10xx": ["extmod/ulab/", "lib/tinyusb/", "data/nvm.toml/"],
"nrf": ["extmod/ulab/", "lib/mp3/", "lib/protomatter/", "lib/tinyusb/", "data/nvm.toml/"],
"litex": ["extmod/ulab/", "lib/tinyusb/", "lib/tlsf"],
"mimxrt10xx": ["extmod/ulab/", "lib/tinyusb/", "lib/tlsf", "data/nvm.toml/"],
"nrf": [
"extmod/ulab/",
"lib/mp3/",
"lib/protomatter/",
"lib/tinyusb/",
"lib/tlsf",
"data/nvm.toml/",
],
"raspberrypi": [
"extmod/ulab/",
"lib/adafruit_floppy/",
Expand All @@ -41,10 +50,18 @@
"lib/protomatter/",
"lib/quirc/",
"lib/tinyusb/",
"lib/tlsf",
"data/nvm.toml/",
],
"silabs": ["extmod/ulab/", "data/nvm.toml/"],
"stm": ["extmod/ulab/", "lib/mp3/", "lib/protomatter/", "lib/tinyusb/", "data/nvm.toml/"]
"silabs": ["extmod/ulab/", "data/nvm.toml/", "lib/tlsf"],
"stm": [
"extmod/ulab/",
"lib/mp3/",
"lib/protomatter/",
"lib/tinyusb/",
"lib/tlsf",
"data/nvm.toml/",
]
# omit unix which is part of the "test" target below
}

Expand Down

0 comments on commit 166a98f

Please sign in to comment.