Skip to content

Commit

Permalink
Add [email protected] to the registry (#3031)
Browse files Browse the repository at this point in the history
  • Loading branch information
fniksic authored Oct 29, 2024
1 parent 5c49895 commit 5698038
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 1 deletion.
72 changes: 72 additions & 0 deletions modules/fuzztest/20241028.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Copyright 2024 Google LLC
#
# 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
#
# http://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.

module(
name = "fuzztest",
version = "20241028.0",
repo_name = "com_google_fuzztest",
)

bazel_dep(
name = "abseil-cpp",
version = "20240116.1",
repo_name = "com_google_absl",
)
bazel_dep(
name = "re2",
version = "2024-04-01",
repo_name = "com_googlesource_code_re2",
)
bazel_dep(
name = "bazel_skylib",
version = "1.7.1",
)
bazel_dep(
name = "platforms",
version = "0.0.10",
repo_name = "platforms",
)
bazel_dep(
name = "googletest",
version = "1.14.0.bcr.1",
repo_name = "com_google_googletest",
)
bazel_dep(
name = "protobuf",
version = "28.2",
repo_name = "com_google_protobuf",
)
bazel_dep(
name = "rules_proto",
version = "5.3.0-21.7",
)
bazel_dep(
name = "riegeli",
version = "0.0.0-20240606-973b6f0",
repo_name = "com_google_riegeli",
)

# Dev dependencies.
bazel_dep(
name = "nlohmann_json",
version = "3.11.3",
dev_dependency = True,
repo_name = "com_nlohmann_json",
)
bazel_dep(
name = "antlr4-cpp-runtime",
version = "4.12.0",
dev_dependency = True,
repo_name = "antlr_cpp",
)
21 changes: 21 additions & 0 deletions modules/fuzztest/20241028.0/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
matrix:
platform:
- ubuntu2004
bazel:
- 7.x
- 6.x
tasks:
verify_unix_targets:
name: Verify build targets
platform: ${{ platform }}
bazel: ${{ bazel }}
build_flags:
- --action_env=CC=clang
- --action_env=CXX=clang++
- --host_cxxopt=-std=c++17
- --cxxopt=-std=c++17
- --cxxopt=-Wno-c++20-extensions
build_targets:
- '@fuzztest//fuzztest:fuzztest'
- '@fuzztest//fuzztest:fuzztest_gtest_main'
- '@fuzztest//centipede:centipede'
5 changes: 5 additions & 0 deletions modules/fuzztest/20241028.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"url": "https://github.com/google/fuzztest/releases/download/2024-10-28/fuzztest-2024-10-28.tar.gz",
"integrity": "sha256-51rch/xxQXzFVhxoyWSNkQErYZIv3ZdgHO3LNVgBT30=",
"strip_prefix": "fuzztest-2024-10-28"
}
3 changes: 2 additions & 1 deletion modules/fuzztest/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"github:google/fuzztest"
],
"versions": [
"20240813.0"
"20240813.0",
"20241028.0"
],
"yanked_versions": {}
}

0 comments on commit 5698038

Please sign in to comment.