Skip to content

Commit 16d55a0

Browse files
committed
CICD-770
1 parent 9448ba3 commit 16d55a0

Some content is hidden

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

87 files changed

+3745
-2671
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
env:
3333
# Bazelisk will download bazel to here
3434
XDG_CACHE_HOME: ~/.cache/bazel-repo
35-
run: bazel test //... --jobs 1 # limit number of jobs to prevent broken pipe error
35+
run: bazel test //...

BUILD

-30
This file was deleted.

BUILD.bazel

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
load("@bazel_gazelle//:def.bzl", "gazelle")
2+
3+
# Gazelle configuration options.
4+
# See https://github.com/bazelbuild/bazel-gazelle#running-gazelle-with-bazel
5+
# gazelle:prefix github.com/bazelbuild/rules_python/gazelle
6+
# gazelle:exclude bazel-out
7+
gazelle(
8+
name = "gazelle",
9+
)
10+
11+
gazelle(
12+
name = "gazelle_update_repos",
13+
args = [
14+
"-from_file=go.mod",
15+
"-to_macro=deps.bzl%go_deps",
16+
"-prune",
17+
],
18+
command = "update-repos",
19+
)
20+
21+
filegroup(
22+
name = "distribution",
23+
srcs = [
24+
":BUILD.bazel",
25+
":MODULE.bazel",
26+
":README.md",
27+
":WORKSPACE",
28+
":def.bzl",
29+
":deps.bzl",
30+
":go.mod",
31+
":go.sum",
32+
"//manifest:distribution",
33+
"//modules_mapping:distribution",
34+
"//python:distribution",
35+
"//pythonconfig:distribution",
36+
],
37+
visibility = ["@rules_python//:__pkg__"],
38+
)

MODULE.bazel

+14-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ module(
44
compatibility_level = 1,
55
)
66

7-
bazel_dep(name = "rules_python", version = "0.27.1")
7+
bazel_dep(name = "bazel_skylib", version = "1.6.1")
8+
bazel_dep(name = "rules_python", version = "0.32.2")
89
bazel_dep(name = "rules_go", version = "0.41.0", repo_name = "io_bazel_rules_go")
910
bazel_dep(name = "gazelle", version = "0.33.0", repo_name = "bazel_gazelle")
1011

@@ -13,15 +14,21 @@ go_deps.from_file(go_mod = "//:go.mod")
1314
use_repo(
1415
go_deps,
1516
"com_github_bazelbuild_buildtools",
17+
"com_github_bmatcuk_doublestar_v4",
1618
"com_github_emirpasic_gods",
1719
"com_github_ghodss_yaml",
18-
"com_github_google_uuid",
20+
"com_github_smacker_go_tree_sitter",
21+
"com_github_stretchr_testify",
1922
"in_gopkg_yaml_v2",
23+
"org_golang_x_sync",
2024
)
2125

22-
# (Optional) Register a specific python toolchain instead of using the host version
23-
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
24-
python.toolchain(
25-
python_version = "3.9",
26+
python_stdlib_list = use_extension("//python:extensions.bzl", "python_stdlib_list")
27+
use_repo(
28+
python_stdlib_list,
29+
"python_stdlib_list_3_10",
30+
"python_stdlib_list_3_11",
31+
"python_stdlib_list_3_12",
32+
"python_stdlib_list_3_8",
33+
"python_stdlib_list_3_9",
2634
)
27-
use_repo(python, "python_3_9")

0 commit comments

Comments
 (0)