Skip to content

Commit 83afc24

Browse files
authoredNov 8, 2021
Allow building from head repo (bazelbuild#612)
1 parent 9035fa4 commit 83afc24

File tree

5 files changed

+137
-46
lines changed

5 files changed

+137
-46
lines changed
 

‎README.md

+30-2
Original file line numberDiff line numberDiff line change
@@ -178,21 +178,49 @@ Third party (external) artifacts can be brought in with systems such as [`rules_
178178
# Development Setup Guide
179179
As of 1.5.0, to use the rules directly from the rules_kotlin workspace (i.e. not the release artifact)
180180
require the use of `release_archive` repository. This repository will build and configure the current
181-
workspace to use `rules_kotlin` in the same manner as the released binary artifact.
181+
workspace to use `rules_kotlin` in the same manner as the released binary artifact.
182182

183183
In the project's `WORKSPACE`, change the setup:
184+
184185
```python
185186

186187
# Use local check-out of repo rules (or a commit-archive from github via http_archive or git_repository)
187188
local_repository(
188189
name = "release_archive",
189190
path = "../path/to/rules_kotlin_clone/src/main/starlark/release_archive",
190191
)
191-
192192
load("@release_archive//:repository.bzl", "archive_repository")
193193

194+
195+
archive_repository(
196+
name = "io_bazel_rules_kotlin",
197+
)
198+
199+
load("@io_bazel_rules_kotlin//kotlin:repositories.bzl", "kotlin_repositories", "versions")
200+
201+
kotlin_repositories()
202+
203+
load("@io_bazel_rules_kotlin//kotlin:core.bzl", "kt_register_toolchains")
204+
205+
kt_register_toolchains()
206+
```
207+
208+
To use rules_kotlin from head without cloning the repository, (caveat emptor, of course), change the
209+
rules to this:
210+
211+
```python
212+
# Download master or specific revisions
213+
http_archive(
214+
name = "io_bazel_rules_kotlin_master",
215+
urls = [ "https://github.com/bazelbuild/rules_kotlin/archive/refs/heads/master.zip", ],
216+
strip_prefix = "rules_kotlin-master",
217+
)
218+
219+
load("@io_bazel_rules_kotlin_master//src/main/starklark/release_archive", "archive_repository")
220+
194221
archive_repository(
195222
name = "io_bazel_rules_kotlin",
223+
source_repository_name = "io_bazel_rules_kotlin_master"
196224
)
197225

198226
load("@io_bazel_rules_kotlin//kotlin:repositories.bzl", "kotlin_repositories", "versions")

‎WORKSPACE

-32
This file was deleted.

‎WORKSPACE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
WORKSPACE.dev.bazel

‎WORKSPACE.dev.bazel

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright 2018 The Bazel Authors. All rights reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
workspace(name = "dev_io_bazel_rules_kotlin")
15+
16+
load("//src/main/starlark/core/repositories:download.bzl", "kt_download_local_dev_dependencies")
17+
18+
kt_download_local_dev_dependencies()
19+
20+
load("//kotlin:repositories.bzl", "kotlin_repositories")
21+
22+
kotlin_repositories()
23+
24+
register_toolchains("@dev_io_bazel_rules_kotlin//kotlin/internal:default_toolchain")
25+
26+
# Creates toolchain configuration for remote execution with BuildKite CI
27+
# for rbe_ubuntu1604
28+
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
29+
30+
rbe_autoconfig(
31+
name = "buildkite_config",
32+
)

‎src/main/starlark/core/repositories/setup.bzl

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def kt_configure():
5050
],
5151
repositories = [
5252
"https://maven-central.storage.googleapis.com/repos/central/data/",
53+
"https://maven.google.com",
5354
"https://repo1.maven.org/maven2",
5455
],
5556
)

‎src/main/starlark/release_archive/repository.bzl

+73-12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2+
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
3+
14
versions = struct(
25
RULES_KOTLIN = struct(
36
urls = [
@@ -6,6 +9,13 @@ versions = struct(
69
sha256 = "d8650bb939d87a080448ffbbbd1594f5ae054738df5d9471941c18784aa139b9",
710
prefix = "rules_kotlin-1.5.0-beta-3",
811
),
12+
RULES_KOTLIN_HEAD = struct(
13+
urls = [
14+
"https://github.com/bazelbuild/rules_kotlin/archive/refs/heads/master.zip",
15+
],
16+
sha256 = "cd5388f019d856ede82dd2a3dc7cf935d4925340fee56094f1e23d93a62b5439",
17+
prefix = "rules_kotlin-master",
18+
),
919
)
1020

1121
def archive_repository_implementation(repository_ctx):
@@ -38,10 +48,31 @@ def archive_repository_implementation(repository_ctx):
3848
# move to execroot, then reference local repo.
3949
workspace = repository_ctx.path("../../%s" % release_archive.workspace_root)
4050

51+
if not workspace.exists:
52+
fail("local workspace %s does not exist" % workspace)
53+
4154
target = "//%s:%s" % (release_archive.package, release_archive.name)
4255

56+
workspace_file = workspace.get_child("WORKSPACE")
57+
58+
# if kt_download_local_dev_dependencies isn't there, the WORKSPACE file is invalid
59+
# probably generated by http_archive.
60+
if not ("kt_download_local_dev_dependencies" in repository_ctx.read(workspace_file)):
61+
repository_ctx.report_progress(
62+
"Symlinking WORKSPACE to WORKSPACE.dev.bazel in %s" % (workspace.basename),
63+
)
64+
65+
# Remove existing WORKSPACE, as it might be created by http_archive
66+
repository_ctx.delete(workspace_file)
67+
68+
# Symlink the WORKSPACE
69+
repository_ctx.symlink(
70+
workspace.get_child("WORKSPACE.dev.bazel"),
71+
workspace_file,
72+
)
73+
4374
repository_ctx.report_progress(
44-
"Building %s in %s... (may take a while.)" % (target, workspace),
75+
"Building %s in %s... (may take a while.)" % (target, workspace.basename),
4576
)
4677

4778
result = repository_ctx.execute(
@@ -66,10 +97,12 @@ def archive_repository_implementation(repository_ctx):
6697
)
6798

6899
# update release when the contents change.
69-
return [
70-
repository_ctx.path("../../%s" % release_archive.workspace_root),
71-
]
72-
return []
100+
return {
101+
"release_archive": str(workspace),
102+
}
103+
return {
104+
"release_archive": "",
105+
}
73106

74107
# not windows compatible.
75108
def _find_workspace(attr, environ, path):
@@ -99,7 +132,6 @@ _archive_repository = repository_rule(
99132
),
100133
"local_release_archive_target": attr.label(
101134
doc = "release_archive rule.",
102-
default = Label("@rules_kotlin_release//:rules_kotlin_release"),
103135
),
104136
"env_archive": attr.string(
105137
doc = "release archive path environment variable name",
@@ -116,17 +148,46 @@ _archive_repository = repository_rule(
116148
},
117149
)
118150

119-
def archive_repository(name, local_path = "../..", release_archive_target = Label("//:rules_kotlin_release")):
120-
release_name = "%s_head" % name
121-
if not native.existing_rule(release_name):
122-
native.local_repository(
123-
name = release_name,
151+
def archive_repository(
152+
name,
153+
local_path = "../..",
154+
release_archive_target = Label("//:rules_kotlin_release"),
155+
remote_source_archive = None,
156+
source_repository_name = None):
157+
"""
158+
archive_repository builds rules_kotlin from either a local_path or a remote archive.
159+
160+
Args:
161+
name: of the repository
162+
local_path: to an un-archived rules_kotlin repository. Defaults to '../..'.
163+
release_archive_target: Label to build a rules_kotlin release
164+
remote_source_archive: struct(
165+
urls = list of urls for a remote source archive,
166+
sha256 = hash of remote archive,
167+
prefix = directory string to strip from extracted archive
168+
)
169+
source_repository_name: of the release archive. Defaults to `name`_head. If set to an existing
170+
repository no new repository will be created.
171+
"""
172+
source_repository_name = source_repository_name or ("%s_head" % name)
173+
if remote_source_archive:
174+
maybe(
175+
http_archive,
176+
name = source_repository_name,
177+
sha256 = remote_source_archive.sha256,
178+
strip_prefix = remote_source_archive.prefix,
179+
urls = remote_source_archive.urls,
180+
)
181+
else:
182+
maybe(
183+
native.local_repository,
184+
name = source_repository_name,
124185
path = local_path,
125186
)
126187
_archive_repository(
127188
name = name,
128189
local_release_archive_target = "@%s//%s:%s" % (
129-
release_name,
190+
source_repository_name,
130191
release_archive_target.package,
131192
release_archive_target.name,
132193
),

0 commit comments

Comments
 (0)
Please sign in to comment.