-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add rules_swift 1.5.0 * Add platforms dep * Add patch for platforms dep
- Loading branch information
1 parent
ad95a8e
commit 92fba89
Showing
5 changed files
with
97 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Generated by update-module-version.sh. DO NOT EDIT. | ||
module( | ||
name = "rules_swift", | ||
compatibility_level = 1, | ||
repo_name = "build_bazel_rules_swift", | ||
version = "1.5.0", | ||
) | ||
|
||
# --- End generated content | ||
|
||
bazel_dep(name = "bazel_skylib", version = "1.3.0") | ||
bazel_dep(name = "apple_support", repo_name = "build_bazel_apple_support", version = "1.3.2") | ||
bazel_dep(name = "rules_cc", version = "0.0.2") | ||
bazel_dep(name = "platforms", version = "0.0.5") | ||
bazel_dep(name = "protobuf", repo_name = "com_google_protobuf", version = "3.19.2") # To be removed once rules_proto is bzlmod-ready. | ||
|
||
non_module_deps = use_extension("//swift:extensions.bzl", "non_module_deps") | ||
|
||
use_repo( | ||
non_module_deps, | ||
"build_bazel_rules_swift_local_config", | ||
"com_github_apple_swift_protobuf", | ||
"com_github_grpc_grpc_swift", | ||
"com_github_apple_swift_nio", | ||
"com_github_apple_swift_nio_http2", | ||
"com_github_apple_swift_nio_transport_services", | ||
"com_github_apple_swift_nio_extras", | ||
"com_github_apple_swift_log", | ||
"com_github_nlohmann_json", | ||
"rules_proto", | ||
"build_bazel_rules_swift_index_import", | ||
) | ||
|
||
# Dev dependencies | ||
bazel_dep(name = "stardoc", dev_dependency = True, repo_name = "io_bazel_skydoc", version = "0.5.3") |
24 changes: 24 additions & 0 deletions
24
modules/rules_swift/1.5.0/patches/add-dependency-on-platforms.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
From 7de898d7ccbf8cf3b0cabcd5ead1858573480ab3 Mon Sep 17 00:00:00 2001 | ||
From: Patrick Balestra <[email protected]> | ||
Date: Fri, 23 Dec 2022 10:28:51 +0100 | ||
Subject: [PATCH] Add dependency on platforms | ||
|
||
--- | ||
MODULE.bazel | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/MODULE.bazel b/MODULE.bazel | ||
index 61b449d..392a75e 100644 | ||
--- a/MODULE.bazel | ||
+++ b/MODULE.bazel | ||
@@ -11,6 +11,7 @@ module( | ||
bazel_dep(name = "bazel_skylib", version = "1.3.0") | ||
bazel_dep(name = "apple_support", repo_name = "build_bazel_apple_support", version = "1.3.2") | ||
bazel_dep(name = "rules_cc", version = "0.0.2") | ||
+bazel_dep(name = "platforms", version = "0.0.5") | ||
bazel_dep(name = "protobuf", repo_name = "com_google_protobuf", version = "3.19.2") # To be removed once rules_proto is bzlmod-ready. | ||
|
||
non_module_deps = use_extension("//swift:extensions.bzl", "non_module_deps") | ||
-- | ||
2.37.0 (Apple Git-136) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
shell_commands: &shell_commands | ||
- "echo --- Downloading and extracting Swift $SWIFT_VERSION to $SWIFT_HOME" | ||
- "mkdir $SWIFT_HOME" | ||
- "curl https://download.swift.org/swift-${SWIFT_VERSION}-release/ubuntu2004/swift-${SWIFT_VERSION}-RELEASE/swift-${SWIFT_VERSION}-RELEASE-ubuntu20.04.tar.gz | tar xvz --strip-components=1 -C $SWIFT_HOME" | ||
|
||
matrix: | ||
platform: | ||
- ubuntu2004 | ||
tasks: | ||
verify_targets: | ||
name: Verify build targets | ||
platform: ${{ platform }} | ||
environment: | ||
CC: "clang" | ||
SWIFT_VERSION: "5.5.3" | ||
SWIFT_HOME: "$HOME/swift-$SWIFT_VERSION" | ||
PATH: "$PATH:$SWIFT_HOME/usr/bin" | ||
shell_commands: *shell_commands | ||
build_flags: | ||
- "--action_env=PATH" | ||
build_targets: | ||
- "@rules_swift//examples/xplatform/..." | ||
- "-@rules_swift//examples/xplatform/grpc/..." # TODO: Fix grpc on Linux | ||
verify_targets_macos: | ||
name: Verify build targets | ||
platform: macos | ||
build_targets: | ||
- "@rules_swift//examples/apple/..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"integrity": "sha256-MvldvmqI6ymKqnkPBQZUNPMqZixl7Apqq9r2iB5PFp8=", | ||
"patch_strip": 1, | ||
"patches": { | ||
"add-dependency-on-platforms.patch": "sha256-QOemXmLkzi87jipl/a1pi9/XSkBxdG6IbAXKSMz7iFg=" | ||
}, | ||
"url": "https://github.com/bazelbuild/rules_swift/releases/download/1.5.0/rules_swift.1.5.0.tar.gz" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
"github:bazelbuild/rules_swift" | ||
], | ||
"versions": [ | ||
"1.2.0" | ||
"1.2.0", | ||
"1.5.0" | ||
], | ||
"yanked_versions": {} | ||
} |