Skip to content
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
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# TODO: This doesn't work with arm64 Macs yet. That is due to openssl being x86 only here.
# Since macos-14+ requires "-large" we have to disable this for now.
os: [ubuntu-latest]
os: [macos-latest, ubuntu-latest]
bazel_version: [latest] # rules_rust bzlmod support is experimental and needs latest version as of now (20230912).
bzlmod: [true, false]
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 3 additions & 1 deletion tests/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ local_path_override(
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "rules_cc", version = "0.2.8")
bazel_dep(name = "rules_foreign_cc", version = "0.15.0")
bazel_dep(name = "rules_go", version = "0.50.1", repo_name = "io_bazel_rules_go")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "rules_rust", version = "0.67.0")
bazel_dep(name = "rules_foreign_cc", version = "0.15.0")
bazel_dep(name = "rules_shell", version = "0.6.1")
bazel_dep(name = "abseil-cpp", version = "20250814.1", repo_name = "com_google_absl")
bazel_dep(name = "boringssl", version = "0.20251002.0")

# TODO: Remove when protobuf is released with a version of rules_python that supports 8.x
bazel_dep(name = "rules_python", version = "1.6.3")
Expand Down
9 changes: 4 additions & 5 deletions tests/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,10 @@ http_archive(
)

http_archive(
name = "openssl",
build_file = "//openssl:openssl.bazel",
sha256 = "f6fb3079ad15076154eda9413fed42877d668e7069d9b87396d0804fdb3f4c90",
strip_prefix = "openssl-1.1.1c",
urls = ["https://www.openssl.org/source/openssl-1.1.1c.tar.gz"],
name = "boringssl",
sha256 = "f96733fc3df03d4195db656d1b7b8c174c33f95d052f811f0ecc8f4e4e3db332",
strip_prefix = "boringssl-0.20251002.0",
urls = ["https://github.com/google/boringssl/releases/download/0.20251002.0/boringssl-0.20251002.0.tar.gz"],
)

http_archive(
Expand Down
8 changes: 0 additions & 8 deletions tests/WORKSPACE.bzlmod
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

# Well known repos; present here only for testing.

http_archive(
name = "openssl",
build_file = "//openssl:openssl.bazel",
sha256 = "f6fb3079ad15076154eda9413fed42877d668e7069d9b87396d0804fdb3f4c90",
strip_prefix = "openssl-1.1.1c",
urls = ["https://www.openssl.org/source/openssl-1.1.1c.tar.gz"],
)

_ALL_CONTENT = """\
filegroup(
name = "all_srcs",
Expand Down
4 changes: 0 additions & 4 deletions tests/openssl/BUILD.bazel

This file was deleted.

28 changes: 0 additions & 28 deletions tests/openssl/crypto/include/internal/bn_conf.h

This file was deleted.

17 changes: 0 additions & 17 deletions tests/openssl/crypto/include/internal/dso_conf.h

This file was deleted.

191 changes: 0 additions & 191 deletions tests/openssl/include/openssl/opensslconf.h

This file was deleted.

Loading