Skip to content

Commit df64388

Browse files
committed
Merge branch 'main' into js/shared-dataflow-merge-main
2 parents 5c222f7 + be945f1 commit df64388

1,505 files changed

Lines changed: 136459 additions & 36645 deletions

File tree

Some content is hidden

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

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.2.0
1+
7.2.1

.devcontainer/swift/root.sh

100644100755
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,26 @@ set -xe
33
BAZELISK_VERSION=v1.12.0
44
BAZELISK_DOWNLOAD_SHA=6b0bcb2ea15bca16fffabe6fda75803440375354c085480fe361d2cbf32501db
55

6+
# install git lfs apt source
7+
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
8+
9+
# install gh apt source
10+
(type -p wget >/dev/null || (sudo apt update && sudo apt-get install wget -y)) \
11+
&& sudo mkdir -p -m 755 /etc/apt/keyrings \
12+
&& wget -qO- https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
13+
&& sudo chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
14+
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
15+
616
apt-get update
717
export DEBIAN_FRONTEND=noninteractive
818
apt-get -y install --no-install-recommends \
919
zlib1g-dev \
1020
uuid-dev \
1121
python3-distutils \
1222
python3-pip \
13-
bash-completion
23+
bash-completion \
24+
git-lfs \
25+
gh
1426

1527
# Install Bazel
1628
curl -fSsL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION}/bazelisk-linux-amd64

.devcontainer/swift/user.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
set -xe
22

3+
git lfs install
4+
35
# add the workspace to the codeql search path
46
mkdir -p /home/vscode/.config/codeql
57
echo "--search-path /workspaces/codeql" > /home/vscode/.config/codeql/config

MODULE.bazel

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ use_repo(
112112
"kotlin-compiler-1.9.0-Beta",
113113
"kotlin-compiler-1.9.20-Beta",
114114
"kotlin-compiler-2.0.0-RC1",
115+
"kotlin-compiler-2.0.20-Beta2",
115116
"kotlin-compiler-embeddable-1.5.0",
116117
"kotlin-compiler-embeddable-1.5.10",
117118
"kotlin-compiler-embeddable-1.5.20",
@@ -124,6 +125,7 @@ use_repo(
124125
"kotlin-compiler-embeddable-1.9.0-Beta",
125126
"kotlin-compiler-embeddable-1.9.20-Beta",
126127
"kotlin-compiler-embeddable-2.0.0-RC1",
128+
"kotlin-compiler-embeddable-2.0.20-Beta2",
127129
"kotlin-stdlib-1.5.0",
128130
"kotlin-stdlib-1.5.10",
129131
"kotlin-stdlib-1.5.20",
@@ -136,11 +138,16 @@ use_repo(
136138
"kotlin-stdlib-1.9.0-Beta",
137139
"kotlin-stdlib-1.9.20-Beta",
138140
"kotlin-stdlib-2.0.0-RC1",
141+
"kotlin-stdlib-2.0.20-Beta2",
139142
)
140143

141144
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")
142145
go_sdk.download(version = "1.22.2")
143146

147+
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
148+
go_deps.from_file(go_mod = "//go/extractor:go.mod")
149+
use_repo(go_deps, "org_golang_x_mod", "org_golang_x_tools")
150+
144151
lfs_files = use_repo_rule("//misc/bazel:lfs.bzl", "lfs_files")
145152

146153
lfs_files(

0 commit comments

Comments
 (0)