Skip to content

Commit

Permalink
Add rules_swift 1.5.0
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
BalestraPatrick committed Dec 22, 2022
1 parent ad95a8e commit 51589b2
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 1 deletion.
34 changes: 34 additions & 0 deletions modules/rules_swift/1.5.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by update-module-version.sh. DO NOT EDIT.
module(
name = "rules_swift",
compatibility_level = 1,
repo_name = "build_bazel_rules_swift",
version = "1.4.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 = "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")
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/..."
4 changes: 4 additions & 0 deletions modules/rules_swift/1.5.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"integrity": "sha256-MvldvmqI6ymKqnkPBQZUNPMqZixl7Apqq9r2iB5PFp8=",
"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": {}
}

0 comments on commit 51589b2

Please sign in to comment.