From 673bb1a9ce78d2f2fe1e321441da8c911170cc59 Mon Sep 17 00:00:00 2001 From: Oliver Lee Date: Fri, 12 Dec 2025 22:08:51 -0600 Subject: [PATCH] fix starpls errors Change-Id: Iecefecc9762fd74e35f2130eaef553355d8d9c70 --- MODULE.bazel | 8 ++++++-- examples/target_platform/MODULE.bazel | 8 ++++++-- examples/target_platform_with_custom_flag/MODULE.bazel | 8 ++++++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 7b7d575..7218807 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -40,7 +40,9 @@ bazel_dep( module_name = "cortex_m", integrity = "sha256-RCBK+5PFoY950AbzLU7AmyqE8rVOmGN9Pkxw2YWXXhk=", strip_prefix = "cortex_m-{}".format(commit), - url = "https://github.com/oliverlee/cortex_m/archive/{}.tar.gz".format(commit), + urls = [ + "https://github.com/oliverlee/cortex_m/archive/{}.tar.gz".format(commit), + ], ) for commit in ["37981beef61a75c26672e9330c1cf6da875af7bc"] ] @@ -50,7 +52,9 @@ bazel_dep( module_name = "toolchains_arm_gnu", integrity = "sha256-CM6gtNvZ3Yd2/psrpyFIHi4nDQkoTSKb5jMRD4JiHxU=", strip_prefix = "toolchains_arm_gnu-{}".format(commit), - url = "https://github.com/hexdae/toolchains_arm_gnu/archive/{}.tar.gz".format(commit), + urls = [ + "https://github.com/hexdae/toolchains_arm_gnu/archive/{}.tar.gz".format(commit), + ], ) for commit in ["76837cb143e98566008eab52e0003a49b6d18e7e"] ] diff --git a/examples/target_platform/MODULE.bazel b/examples/target_platform/MODULE.bazel index 125080a..3b4e4d9 100644 --- a/examples/target_platform/MODULE.bazel +++ b/examples/target_platform/MODULE.bazel @@ -26,7 +26,9 @@ bazel_dep( module_name = "cortex_m", integrity = "sha256-RCBK+5PFoY950AbzLU7AmyqE8rVOmGN9Pkxw2YWXXhk=", strip_prefix = "cortex_m-{}".format(commit), - url = "https://github.com/oliverlee/cortex_m/archive/{}.tar.gz".format(commit), + urls = [ + "https://github.com/oliverlee/cortex_m/archive/{}.tar.gz".format(commit), + ], ) for commit in ["37981beef61a75c26672e9330c1cf6da875af7bc"] ] @@ -36,7 +38,9 @@ bazel_dep( module_name = "toolchains_arm_gnu", integrity = "sha256-CM6gtNvZ3Yd2/psrpyFIHi4nDQkoTSKb5jMRD4JiHxU=", strip_prefix = "toolchains_arm_gnu-{}".format(commit), - url = "https://github.com/hexdae/toolchains_arm_gnu/archive/{}.tar.gz".format(commit), + urls = [ + "https://github.com/hexdae/toolchains_arm_gnu/archive/{}.tar.gz".format(commit), + ], ) for commit in ["76837cb143e98566008eab52e0003a49b6d18e7e"] ] diff --git a/examples/target_platform_with_custom_flag/MODULE.bazel b/examples/target_platform_with_custom_flag/MODULE.bazel index 125080a..3b4e4d9 100644 --- a/examples/target_platform_with_custom_flag/MODULE.bazel +++ b/examples/target_platform_with_custom_flag/MODULE.bazel @@ -26,7 +26,9 @@ bazel_dep( module_name = "cortex_m", integrity = "sha256-RCBK+5PFoY950AbzLU7AmyqE8rVOmGN9Pkxw2YWXXhk=", strip_prefix = "cortex_m-{}".format(commit), - url = "https://github.com/oliverlee/cortex_m/archive/{}.tar.gz".format(commit), + urls = [ + "https://github.com/oliverlee/cortex_m/archive/{}.tar.gz".format(commit), + ], ) for commit in ["37981beef61a75c26672e9330c1cf6da875af7bc"] ] @@ -36,7 +38,9 @@ bazel_dep( module_name = "toolchains_arm_gnu", integrity = "sha256-CM6gtNvZ3Yd2/psrpyFIHi4nDQkoTSKb5jMRD4JiHxU=", strip_prefix = "toolchains_arm_gnu-{}".format(commit), - url = "https://github.com/hexdae/toolchains_arm_gnu/archive/{}.tar.gz".format(commit), + urls = [ + "https://github.com/hexdae/toolchains_arm_gnu/archive/{}.tar.gz".format(commit), + ], ) for commit in ["76837cb143e98566008eab52e0003a49b6d18e7e"] ]