Skip to content

Commit ce68d5e

Browse files
authored
rename bazel-starter to build-starter (#2)
1 parent 8ecff15 commit ce68d5e

54 files changed

Lines changed: 25 additions & 26 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.bazelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ build --action_env=TEMP
99
build --action_env=TMP
1010
build --action_env=USERPROFILE
1111

12-
# Configure bazel to use Vector's and Bazel Central Registry for fetching external dependencies.
12+
# Configure Bazel to use Vector's and Bazel Central Registry for fetching external dependencies.
1313
common --registry=https://raw.githubusercontent.com/vectorgrp/bazel-registry/main
1414
common --registry=https://bcr.bazel.build

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
bazel-*
2-
!bazel-starter/

MODULE.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ bazel_dep(name = "rules_ecu_config", version = "1.0.2")
77
bazel_dep(name = "rules_cfg6", version = "1.0.1")
88

99
# Import the BSW package as a local repository.
10-
bsw_pkg = use_repo_rule("//bazel-starter:helpers.bzl", "bsw_pkg")
10+
bsw_pkg = use_repo_rule("//build-starter:helpers.bzl", "bsw_pkg")
1111
bsw_pkg(
1212
name = "bsw_package",
1313
# Provide the path to the BSW package folder.
@@ -37,7 +37,7 @@ use_repo(ecu_config, "cfg6", "dvarjson")
3737
register_toolchains("@cfg6//:toolchain")
3838
register_toolchains("@dvarjson//:toolchain")
3939

40-
# Include bazel-starter projects.
41-
include("//bazel-starter/com-diag:com-diag.MODULE.bazel")
42-
include("//bazel-starter/eac:eac.MODULE.bazel")
43-
include("//bazel-starter/project-creation:project-creation.MODULE.bazel")
40+
# Include build-starter projects.
41+
include("//build-starter/com-diag:com-diag.MODULE.bazel")
42+
include("//build-starter/eac:eac.MODULE.bazel")
43+
include("//build-starter/project-creation:project-creation.MODULE.bazel")

MODULE.bazel.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Lines changed: 2 additions & 2 deletions

bazel-starter/com-diag/com-diag.MODULE.bazel renamed to build-starter/com-diag/com-diag.MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
ecu_config = use_extension("@rules_ecu_config//:ecu_config.bzl", "ecu_config")
99
ecu_config.project(
1010
bsw_pkg = "@bsw_package//:folder",
11-
dvjson = "//bazel-starter/com-diag:dvcfg6-project/ComDiag.dvjson",
11+
dvjson = "//build-starter/com-diag:dvcfg6-project/ComDiag.dvjson",
1212
# Providing any of the following files enables Bazel to update the project when necessary.
1313
# Optionally provide diagnostic descriptions (for CDD support see https://marketplace.visualstudio.com/items?itemName=VectorGroup.dvarjson).
1414
# diag_modules = [
@@ -32,7 +32,7 @@ ecu_config.project(
3232
use_repo(ecu_config, "ComDiag")
3333

3434
# Use your own DaVinci project (change "dvjson" attribute above to "@MigratedProject//:MyEcu.dvjson").
35-
# dvjson = use_repo_rule("//bazel-starter:helpers.bzl", "dvjson")
35+
# dvjson = use_repo_rule("//build-starter:helpers.bzl", "dvjson")
3636
# dvjson(
3737
# name = "MigratedProject",
3838
# path = "/absolute/path/to/MyEcu.dvjson",

0 commit comments

Comments
 (0)