Skip to content

Commit 8c325b8

Browse files
authored
prepare release 1.4.2 (#73)
* Update CMakeLists.txt * Update MODULE.bazel * update pipeline * update pipeline
1 parent aa80982 commit 8c325b8

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.bazelrc

-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,5 @@ test --//:werror --features external_include_paths
88
# change detect_odr_violation to level 1 to check that
99
test --test_env=ASAN_OPTIONS=detect_odr_violation=1
1010

11-
# There are bugs about -fsanitize=address and -Wuninitialized
12-
# as mentioned in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105616
13-
test:asan --features=asan
14-
1511
test:arenastring --//test/proto:arenastring
1612
test:mutable-donated-string --config=arenastring --copt=-DGOOGLE_PROTOBUF_MUTABLE_DONATED_STRING=1

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
mode: [{name: dbg, flag: --compilation_mode=dbg}, {name: opt, flag: --compilation_mode=opt}]
1616
std: [{name: c++20, flag: --cxxopt=-std=c++20}, {name: c++14, flag: --cxxopt=-std=c++14}]
1717
stdlib: [{name: stdlibc++}, {name: libc++, flag: --cxxopt=-stdlib=libc++ --linkopt=-stdlib=libc++}]
18-
feature: [{name: asan, flag: --config=asan}, {name: tsan, flag: --features=tsan}]
18+
feature: [{name: asan, flag: --features=asan}, {name: tsan, flag: --features=tsan}]
1919
exclude:
2020
- compiler: {name: gcc}
2121
stdlib: {name: libc++}
@@ -58,7 +58,7 @@ jobs:
5858
if: always()
5959
with:
6060
path: bazel-disk
61-
key: bazel-disk-basic-${{matrix.compiler.name}}-${{github.sha}}
61+
key: bazel-disk-compatible-${{matrix.compiler.name}}-${{github.sha}}
6262

6363
arenastring:
6464
strategy:
@@ -86,7 +86,7 @@ jobs:
8686
- if: ${{matrix.stdlib.name == 'libc++'}}
8787
run: sudo apt install libc++-18-dev libc++abi-18-dev
8888
- run: sed -i "/single_version_override.*protobuf/s/version = '[^']*'/version = '28.3.arenastring'/" MODULE.bazel
89-
- run: bazel test --compilation_mode=opt --disk_cache=bazel-disk --verbose_failures --test_output=errors --config=asan --registry=https://bcr.bazel.build --registry=file://%workspace%/registry ${{matrix.compiler.flag}} ${{matrix.stdlib.flag}} ${{matrix.mutable.flag}} test/...
89+
- run: bazel test --compilation_mode=opt --disk_cache=bazel-disk --verbose_failures --test_output=errors --features=asan --registry=https://bcr.bazel.build --registry=file://%workspace%/registry ${{matrix.compiler.flag}} ${{matrix.stdlib.flag}} ${{matrix.mutable.flag}} test/...
9090
- uses: actions/cache/save@v4
9191
if: always()
9292
with:

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.14)
22

3-
project(babylon VERSION 1.4.1)
3+
project(babylon VERSION 1.4.2)
44

55
include(CTest) # for BUILD_TESTING option
66
include(CMakePackageConfigHelpers) # for write_basic_package_version_file

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = 'babylon',
3-
version = '1.4.1',
3+
version = '1.4.2',
44
compatibility_level = 1,
55
)
66

0 commit comments

Comments
 (0)