Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rules_swift 1.5.0 #327

Merged
merged 3 commits into from
Dec 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions modules/rules_swift/1.5.0/MODULE.bazel
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")
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)

28 changes: 28 additions & 0 deletions modules/rules_swift/1.5.0/presubmit.yml
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/..."
8 changes: 8 additions & 0 deletions modules/rules_swift/1.5.0/source.json
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"
}
3 changes: 2 additions & 1 deletion modules/rules_swift/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"github:bazelbuild/rules_swift"
],
"versions": [
"1.2.0"
"1.2.0",
"1.5.0"
],
"yanked_versions": {}
}