Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
These rules make using [Pkl](https://pkl-lang.org) a pleasure with
Bazel.
  • Loading branch information
shs96c authored Dec 6, 2024
1 parent a90db0f commit 783d01b
Show file tree
Hide file tree
Showing 4 changed files with 150 additions and 1 deletion.
110 changes: 110 additions & 0 deletions modules/rules_pkl/0.2.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
# Copyright © 2024 Apple Inc. and the Pkl project authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"Bazel dependencies"

module(
name = "rules_pkl",
version = "0.2.0",
compatibility_level = 1,
)

bazel_dep(name = "aspect_bazel_lib", version = "2.9.4")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "rules_java", version = "8.6.1")
bazel_dep(name = "rules_jvm_external", version = "6.6")

pkl = use_extension("//pkl:extensions.bzl", "pkl")
use_repo(
pkl,
"pkl-cli-linux-aarch64",
"pkl-cli-linux-amd64",
"pkl-cli-macos-aarch64",
"pkl-cli-macos-amd64",
)

register_toolchains(
"@rules_pkl//pkl:pkl_toolchain_codegen_java",
"@rules_pkl//pkl:pkl_toolchain_linux_aarch64",
"@rules_pkl//pkl:pkl_toolchain_linux_amd64",
"@rules_pkl//pkl:pkl_toolchain_macos_aarch64",
"@rules_pkl//pkl:pkl_toolchain_macos_amd64",
)

maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
name = "rules_pkl_deps",
artifacts = [
"org.pkl-lang:pkl-tools:0.27.0",
"org.jetbrains.kotlin:kotlin-stdlib:1.7.10",
"com.google.code.gson:gson:2.10.1",
"org.junit.vintage:junit-vintage-engine:5.7.0",
],
lock_file = "//pkl/private:pkl_deps_install.json",
repositories = [
"https://repo1.maven.org/maven2/",
],
)
use_repo(
maven,
"rules_pkl_deps",
"unpinned_rules_pkl_deps",
)

bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.4.1", dev_dependency = True)
bazel_dep(name = "buildifier_prebuilt", version = "6.1.0", dev_dependency = True)
bazel_dep(name = "gazelle", version = "0.35.0", dev_dependency = True, repo_name = "bazel_gazelle")
bazel_dep(name = "stardoc", version = "0.7.2", dev_dependency = True)
bazel_dep(name = "rules_python", version = "0.34.0", dev_dependency = True)

python = use_extension(
"@rules_python//python/extensions:python.bzl",
"python",
dev_dependency = True,
)
python.toolchain(
configure_coverage_tool = True,
ignore_root_user_error = True,
python_version = "3.12",
)

pip = use_extension(
"@rules_python//python/extensions:pip.bzl",
"pip",
dev_dependency = True,
)
pip.parse(
hub_name = "pip",
python_version = "3.12",
requirements_lock = "//tests:requirements_lock.txt",
)
use_repo(
pip,
"pip",
)

bazel_dep(name = "rules_bazel_integration_test", version = "0.23.0", dev_dependency = True)

bazel_binaries = use_extension(
"@rules_bazel_integration_test//:extensions.bzl",
"bazel_binaries",
dev_dependency = True,
)
bazel_binaries.download(version = "7.2.1")
use_repo(
bazel_binaries,
"bazel_binaries",
"bazel_binaries_bazelisk",
"build_bazel_bazel_7_2_1",
)
33 changes: 33 additions & 0 deletions modules/rules_pkl/0.2.0/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
matrix:
platform:
- debian10
- ubuntu2004
- macos
- macos_arm64
- windows
bazel:
- 7.x
tasks:
verify_targets:
name: Verify build targets
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- '@rules_pkl//pkl/...'
bcr_test_module:
module_path: examples
matrix:
platform:
- debian10
- ubuntu2004
- macos
- macos_arm64
bazel:
- 7.x
tasks:
run_test_module:
name: Run test module
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- //...
5 changes: 5 additions & 0 deletions modules/rules_pkl/0.2.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"url": "https://github.com/apple/rules_pkl/releases/download/v0.2.0/rules_pkl-0.2.0.tar.gz",
"integrity": "sha256-bD1d+kIPuklEZ0CSZXvFsfRhrgF7N6ZAFQwAjJn9yS4=",
"strip_prefix": "rules_pkl-0.2.0"
}
3 changes: 2 additions & 1 deletion modules/rules_pkl/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"github:apple/rules_pkl"
],
"versions": [
"0.1.0"
"0.1.0",
"0.2.0"
],
"yanked_versions": {}
}

0 comments on commit 783d01b

Please sign in to comment.