Skip to content

Commit

Permalink
Add RE2 release 2024-05-01. (#1911)
Browse files Browse the repository at this point in the history
  • Loading branch information
junyer committed Apr 30, 2024
1 parent f0d9bcd commit 1007add
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 1 deletion.
29 changes: 29 additions & 0 deletions modules/re2/2024-05-01/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2009 The RE2 Authors. All Rights Reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# Bazel (http://bazel.build/) MODULE file for RE2.

module(
name = "re2",
version = "2024-05-01",
compatibility_level = 1,
)

bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "apple_support", version = "1.15.1")
bazel_dep(name = "rules_cc", version = "0.0.9")
bazel_dep(name = "abseil-cpp", version = "20240116.2")
bazel_dep(name = "rules_python", version = "0.31.0")
bazel_dep(name = "pybind11_bazel", version = "2.12.0")

# This is a temporary hack for `x64_x86_windows`.
# TODO(junyer): Remove whenever no longer needed.
cc_configure = use_extension("@bazel_tools//tools/cpp:cc_configure.bzl", "cc_configure_extension")
use_repo(cc_configure, "local_config_cc")

# These dependencies will be ignored when the `re2` module is not
# the root module (or when `--ignore_dev_dependency` is enabled).
bazel_dep(name = "google_benchmark", version = "1.8.3", dev_dependency = True)
bazel_dep(name = "googletest", version = "1.14.0.bcr.1", dev_dependency = True)
bazel_dep(name = "abseil-py", version = "1.4.0", dev_dependency = True)
48 changes: 48 additions & 0 deletions modules/re2/2024-05-01/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
matrix:
platform:
- centos7_java11_devtoolset10
- debian10
- ubuntu2004
- macos
- windows
bazel:
- 6.x
- 7.x
tasks:
build:
platform: ${{ platform }}
bazel: ${{ bazel }}
build_flags:
- '--cxxopt=-std=c++14'
build_targets:
- '@re2//:re2'
- '@re2//python:re2'

bcr_test_module:
module_path: '.'

matrix:
platform:
- centos7_java11_devtoolset10
- debian10
- ubuntu2004
- macos
- windows
bazel:
- 6.x
- 7.x
tasks:
test:
platform: ${{ platform }}
bazel: ${{ bazel }}
test_flags:
- '--cxxopt=-std=c++14'
test_targets:
- '//:all'
- '-//:dfa_test'
- '-//:exhaustive1_test'
- '-//:exhaustive2_test'
- '-//:exhaustive3_test'
- '-//:exhaustive_test'
- '-//:random_test'
- '//python:all'
7 changes: 7 additions & 0 deletions modules/re2/2024-05-01/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"integrity": "sha256-Pj6J9QiIsZenatJXYRnlOkOR0SxTkcc3cMBsWDA8WyE=",
"strip_prefix": "re2-2024-05-01",
"url": "https://github.com/google/re2/releases/download/2024-05-01/re2-2024-05-01.zip",
"patch_strip": 0,
"patches": {}
}
3 changes: 2 additions & 1 deletion modules/re2/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"2023-11-01",
"2024-02-01",
"2024-03-01",
"2024-04-01"
"2024-04-01",
"2024-05-01"
],
"yanked_versions": {
"2023-06-02": "bad compatibility_level, upgrade to 2023-09-01 or newer",
Expand Down

0 comments on commit 1007add

Please sign in to comment.