Skip to content

Commit 73a8b5d

Browse files
deannagarciacopybara-github
authored andcommitted
Move to bazel 7 and turn down support for bazel 6.
Migrate all tests to run on bazel 7 and fix errors that came up in the process. 30.x will no longer guarantee support for bazel 6. #test-continuous PiperOrigin-RevId: 698410801
1 parent 671ae8f commit 73a8b5d

17 files changed

+72
-65
lines changed

.github/workflows/staleness_check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
# commit.
5151
uses: protocolbuffers/protobuf-ci/bazel@v3
5252
with:
53+
version: 7.1.2 # Bazel version
5354
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
5455
bazel-cache: staleness
5556
bash: >

.github/workflows/test_bazel.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,7 @@ jobs:
2929
runner: [ ubuntu, windows, macos ]
3030
bazelversion: [ '7.1.2' ]
3131
bzlmod: [ true, false ]
32-
toolchain_resolution: [ "" ]
33-
include:
34-
- runner: ubuntu
35-
bazelversion: '6.4.0'
36-
# Not running Bazel 6 with bzlmod, because it doesn't support use_repo_rule in rules_jvm_external
37-
bzlmod: false
38-
- runner: ubuntu
39-
bzlmod: false
40-
toolchain_resolution: --incompatible_enable_proto_toolchain_resolution=true
41-
- runner: ubuntu
42-
bzlmod: true
43-
toolchain_resolution: --incompatible_enable_proto_toolchain_resolution=true
32+
toolchain_resolution: [ "", "--incompatible_enable_proto_toolchain_resolution=true" ]
4433
runs-on: ${{ matrix.runner }}-latest
4534
name: ${{ matrix.continuous-only && inputs.continuous-prefix || '' }} Examples ${{ matrix.runner }} ${{ matrix.bazelversion }}${{ matrix.bzlmod && ' (bzlmod)' || '' }} ${{ matrix.toolchain_resolution && ' (toolchain resolution)' || '' }}
4635
steps:

.github/workflows/test_cpp.yml

Lines changed: 12 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,27 @@ jobs:
3737
- { name: No-RTTI, flags: --cxxopt=-fno-rtti, continuous-only: true }
3838
include:
3939
# Set defaults
40-
- image: us-docker.pkg.dev/protobuf-build/containers/test/linux/sanitize:6.4.0-27cf7b86212020d7e552bc13b1e084abb971da75
40+
- image: us-docker.pkg.dev/protobuf-build/containers/test/linux/sanitize:7.1.2-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
4141
- targets: //pkg/... //src/... @com_google_protobuf_examples//... //third_party/utf8_range/... //conformance:conformance_framework_tests
4242

4343
# Override cases with custom images
4444
- config: { name: "Bazel7", flags: --noenable_bzlmod }
4545
cache_key: Bazel7
46-
image: "us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-cf84e92285ca133b9c8104ad7b14d70e953cbb8e"
46+
image: "us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-27cf7b86212020d7e552bc13b1e084abb971da75"
4747
targets: "//src/... //third_party/utf8_range/..."
4848
# TODO: remove -Wno-unreachable-code" when dropping C++14
4949
- config: { name: "Bazel7 with Bzlmod", flags: --enable_bzlmod --enable_workspace --per_file_copt=.*/absl/strings/string_view.h@-Wno-unreachable-code --cxxopt="-Wno-self-assign-overloaded" }
5050
cache_key: Bazel7bzlmod
51-
image: "us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-cf84e92285ca133b9c8104ad7b14d70e953cbb8e"
51+
image: "us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-27cf7b86212020d7e552bc13b1e084abb971da75"
5252
targets: "//src/... //third_party/utf8_range/..."
5353
- config: { name: "TCMalloc" }
5454
cache_key: TcMalloc
55-
image: "us-docker.pkg.dev/protobuf-build/containers/test/linux/tcmalloc:6.4.0-27cf7b86212020d7e552bc13b1e084abb971da75"
55+
image: "us-docker.pkg.dev/protobuf-build/containers/test/linux/tcmalloc:7.1.2-d9624f2aa83cba3eaf906f751d75b36aacb9aa82"
5656
targets: "//src/... //third_party/utf8_range/..."
5757
- config: { name: "aarch64" }
58-
cache_key: TcMalloc
58+
cache_key: aarch64-bazel7
5959
targets: "//src/... //src/google/protobuf/compiler:protoc_aarch64_test //third_party/utf8_range/..."
60-
image: "us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:6.4.0-aarch64-08714ed7a713068c8418003a2d95f423d4b1eac9"
60+
image: "us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:7.1.2-aarch64-2920199ab0090ed427413a8e422e62695c8392a8"
6161
name: ${{ matrix.config.continuous-only && inputs.continuous-prefix || '' }} Linux ${{ matrix.config.name }}
6262
runs-on: ${{ matrix.config.runner || 'ubuntu-latest' }}
6363
steps:
@@ -91,7 +91,7 @@ jobs:
9191
- name: Run tests
9292
uses: protocolbuffers/protobuf-ci/bazel-docker@v3
9393
with:
94-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/gcc:6.4.0-${{ matrix.version }}-27cf7b86212020d7e552bc13b1e084abb971da75
94+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/gcc:7.1.2-${{ matrix.version }}-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
9595
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
9696
bazel-cache: cpp_linux/gcc-${{ matrix.version }}
9797
bazel: test //pkg/... //src/... @com_google_protobuf_examples//... //third_party/utf8_range/... //conformance:conformance_framework_tests
@@ -101,7 +101,7 @@ jobs:
101101
fail-fast: false # Don't cancel all jobs if one fails.
102102
matrix:
103103
arch: [x86_64, aarch64]
104-
name: Linux Release ${{ matrix.arch}}
104+
name: Linux Release ${{ matrix.arch }}
105105
runs-on: ubuntu-20-4core
106106
steps:
107107
- name: Checkout pending changes
@@ -112,7 +112,7 @@ jobs:
112112
id: cross-compile
113113
uses: protocolbuffers/protobuf-ci/cross-compile-protoc@v3
114114
with:
115-
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:6.4.0-cf84e92285ca133b9c8104ad7b14d70e953cbb8e
115+
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-27cf7b86212020d7e552bc13b1e084abb971da75
116116
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
117117
architecture: linux-${{ matrix.arch }}
118118
- name: Setup sccache
@@ -123,7 +123,7 @@ jobs:
123123
- name: Run tests
124124
uses: protocolbuffers/protobuf-ci/docker@v3
125125
with:
126-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:6.4.0-${{ matrix.arch }}-08714ed7a713068c8418003a2d95f423d4b1eac9
126+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:7.1.2-${{ matrix.arch }}-2920199ab0090ed427413a8e422e62695c8392a8
127127
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
128128
entrypoint: bash
129129
command: >
@@ -293,7 +293,7 @@ jobs:
293293
if: ${{ !matrix.continuous-only || inputs.continuous-run }}
294294
uses: protocolbuffers/protobuf-ci/docker@v3
295295
with:
296-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/gcc:6.4.0-12.2-27cf7b86212020d7e552bc13b1e084abb971da75
296+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/gcc:7.1.2-12.2-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
297297
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
298298
entrypoint: bash
299299
command: >-
@@ -341,31 +341,19 @@ jobs:
341341
matrix:
342342
include:
343343
- name: MacOS Bazel
344-
os: macos-13
345-
cache_key: macos-13
346-
bazel: test //src/... //third_party/utf8_range/... //conformance:conformance_framework_tests
347-
- name: MacOS Bazel 7
348344
os: macos-13
349345
cache_key: macos-13-bazel7
350346
bazel: test //src/... //third_party/utf8_range/... //conformance:conformance_framework_tests
351-
bazel_version: '7.1.2'
352-
continuous-only: true
353347
- name: MacOS Apple Silicon (build only) Bazel
354348
os: macos-13
355349
cache_key: macos-13-arm
356350
# Current github runners are all Intel based, so just build/compile
357351
# for Apple Silicon to detect issues there.
358352
bazel: build --cpu=darwin_arm64 //src/... //third_party/utf8_range/... //conformance:conformance_framework_tests
359353
- name: Windows Bazel
360-
os: windows-2022
361-
cache_key: windows-2022
362-
bazel: test //src/... @com_google_protobuf_examples//... --test_tag_filters=-conformance --build_tag_filters=-conformance
363-
- name: Windows Bazel 7
364354
os: windows-2022
365355
cache_key: windows-2022-bazel7
366356
bazel: test //src/... @com_google_protobuf_examples//... --test_tag_filters=-conformance --build_tag_filters=-conformance
367-
bazel_version: '7.1.2'
368-
continuous-only: true
369357
name: ${{ matrix.continuous-only && inputs.continuous-prefix || '' }} ${{ matrix.name }}
370358
runs-on: ${{ matrix.os }}
371359
steps:
@@ -381,7 +369,7 @@ jobs:
381369
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
382370
bazel: ${{ matrix.bazel }}
383371
bazel-cache: cpp_${{ matrix.cache_key }}
384-
version: ${{ matrix.bazel_version || '6.4.0' }}
372+
version: ${{ matrix.bazel_version || '7.1.2' }}
385373

386374
non-linux-cmake:
387375
strategy:

.github/workflows/test_csharp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Run tests
2828
uses: protocolbuffers/protobuf-ci/docker@v3
2929
with:
30-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/csharp:6.4.0-3.1.415-6.0.100-08714ed7a713068c8418003a2d95f423d4b1eac9
30+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/csharp:7.1.2-3.1.415-6.0.100-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
3131
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
3232
entrypoint: /bin/bash
3333
command: >-
@@ -43,7 +43,7 @@ jobs:
4343
- name: Run conformance tests
4444
uses: protocolbuffers/protobuf-ci/bazel-docker@v3
4545
with:
46-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/csharp:6.4.0-3.1.415-6.0.100-08714ed7a713068c8418003a2d95f423d4b1eac9
46+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/csharp:7.1.2-3.1.415-6.0.100-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
4747
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
4848
bazel-cache: csharp_linux
4949
bazel: test //csharp:conformance_test --action_env=DOTNET_CLI_TELEMETRY_OPTOUT=1 --test_env=DOTNET_CLI_HOME=/home/bazel

.github/workflows/test_java.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,32 +30,33 @@ jobs:
3030
include:
3131
- name: OpenJDK 8
3232
cache_key: '8'
33-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:6.4.0-8-27cf7b86212020d7e552bc13b1e084abb971da75
33+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:7.1.2-8-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
3434
# TODO: b/318555165 - enable the layering check. Currently it does
3535
# not work correctly with the toolchain in this Docker image.
3636
targets: //java/... //java/internal:java_version //compatibility/... --features=-layering_check
37+
flags: --java_language_version=8
3738
- name: OpenJDK 11
3839
cache_key: '11'
39-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:6.4.0-11-27cf7b86212020d7e552bc13b1e084abb971da75
40+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:7.1.2-11-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
4041
targets: //java/... //java/internal:java_version //compatibility/...
4142
continuous-only: true
4243
- name: OpenJDK 17
4344
cache_key: '17'
44-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:6.4.0-17-27cf7b86212020d7e552bc13b1e084abb971da75
45+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:7.1.2-17-641278a52587c01f44525819b76499db35c2804d
4546
targets: //java/... //java/internal:java_version //compatibility/...
4647
- name: Bazel7
4748
cache_key: 'bazel7nobzlmod'
48-
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-cf84e92285ca133b9c8104ad7b14d70e953cbb8e
49+
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-27cf7b86212020d7e552bc13b1e084abb971da75
4950
targets: //java/... //java/internal:java_version //compatibility/...
5051
flags: --noenable_bzlmod
5152
- name: Bazel7 with Bzlmod
5253
cache_key: 'bazel7bzlmod'
53-
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-cf84e92285ca133b9c8104ad7b14d70e953cbb8e
54+
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-27cf7b86212020d7e552bc13b1e084abb971da75
5455
targets: //java/... //java/internal:java_version //compatibility/...
5556
flags: --enable_bzlmod --enable_workspace
5657
- name: aarch64
5758
cache_key: 'aarch64'
58-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:6.4.0-aarch64-08714ed7a713068c8418003a2d95f423d4b1eac9
59+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:7.1.2-aarch64-2920199ab0090ed427413a8e422e62695c8392a8
5960
targets: //java/... //compatibility/... //src/google/protobuf/compiler:protoc_aarch64_test
6061

6162
name: ${{ matrix.continuous-only && inputs.continuous-prefix || '' }} Linux ${{ matrix.name }}
@@ -105,7 +106,7 @@ jobs:
105106
- name: Generate maven artifacts with bazel and install using maven
106107
uses: protocolbuffers/protobuf-ci/bazel-docker@v3
107108
with:
108-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:6.4.0-11-27cf7b86212020d7e552bc13b1e084abb971da75
109+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/java:7.1.2-11-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
109110
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
110111
bazel-cache: java_linux/11
111112
bash: |

.github/workflows/test_objectivec.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ jobs:
111111
if: ${{ !matrix.continuous-only || inputs.continuous-run }}
112112
uses: protocolbuffers/protobuf-ci/bazel@v3
113113
with:
114+
version: 7.1.2 # Bazel version
114115
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
115116
bazel-cache: cocoapods/${{ matrix.XCODE }}
116117
bash: |
@@ -158,6 +159,7 @@ jobs:
158159
if: ${{ !matrix.config.continuous-only || inputs.continuous-run }}
159160
uses: protocolbuffers/protobuf-ci/bazel@v3
160161
with:
162+
version: 7.1.2 # Bazel version
161163
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
162164
bazel: ${{ matrix.config.bazel_action }} ${{ matrix.config.flags }} ${{ matrix.bazel_targets }}
163165
bazel-cache: objc_${{ matrix.platform }}_${{ matrix.config.name }}

.github/workflows/test_php_ext.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
- name: Package extension
3636
uses: protocolbuffers/protobuf-ci/bazel@v3
3737
with:
38+
version: 7.1.2 # Bazel version
3839
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
3940
bazel-cache: php_ext/${{ matrix.version }}
4041
bash: >

.github/workflows/test_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
targets: //python/... //python:aarch64_test
4242
# TODO Enable this once conformance tests are fixed.
4343
flags: --define=use_fast_cpp_protos=true --test_tag_filters=-conformance
44-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:aarch64-63dd26c0c7a808d92673a3e52e848189d4ab0f17
44+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/emulation:7.1.2-aarch64-2920199ab0090ed427413a8e422e62695c8392a8
4545
- version: "3.9"
4646
- version: "3.10"
4747
continuous-only: true

.github/workflows/test_ruby.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
if: ${{ !matrix.continuous-only || inputs.continuous-run }}
5252
uses: protocolbuffers/protobuf-ci/bazel-docker@v3
5353
with:
54-
image: ${{ matrix.image || format('us-docker.pkg.dev/protobuf-build/containers/test/linux/ruby:6.4.0-{0}-27cf7b86212020d7e552bc13b1e084abb971da75', matrix.ruby) }}
54+
image: ${{ matrix.image || format('us-docker.pkg.dev/protobuf-build/containers/test/linux/ruby:7.1.2-{0}-d9624f2aa83cba3eaf906f751d75b36aacb9aa82', matrix.ruby) }}
5555
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
56-
bazel-cache: ruby_linux/${{ matrix.ruby }}_${{ matrix.bazel }}
56+
bazel-cache: ruby_linux/${{ matrix.ruby }}
5757
bazel: test //ruby/... //ruby/tests:ruby_version --test_env=KOKORO_RUBY_VERSION --test_env=BAZEL=true ${{ matrix.ffi == 'FFI' && '--//ruby:ffi=enabled --test_env=PROTOCOL_BUFFERS_RUBY_IMPLEMENTATION=FFI' || '' }}
5858
# Useful tool for troubleshooting, but the action introduces flakes as well,
5959
# e.g. https://github.com/actions/upload-artifact/issues/569
@@ -77,7 +77,7 @@ jobs:
7777
id: cross-compile
7878
uses: protocolbuffers/protobuf-ci/cross-compile-protoc@v3
7979
with:
80-
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:6.4.0-cf84e92285ca133b9c8104ad7b14d70e953cbb8e
80+
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-27cf7b86212020d7e552bc13b1e084abb971da75
8181
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
8282
architecture: linux-i386
8383

@@ -108,7 +108,7 @@ jobs:
108108
id: cross-compile
109109
uses: protocolbuffers/protobuf-ci/cross-compile-protoc@v3
110110
with:
111-
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:6.4.0-cf84e92285ca133b9c8104ad7b14d70e953cbb8e
111+
image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-cf84e92285ca133b9c8104ad7b14d70e953cbb8e
112112
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
113113
architecture: linux-aarch64
114114

@@ -164,6 +164,7 @@ jobs:
164164
if: ${{ !matrix.continuous-only || inputs.continuous-run }}
165165
uses: protocolbuffers/protobuf-ci/bazel@v3
166166
with:
167+
version: 7.1.2 # Bazel version
167168
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
168169
bazel-cache: ruby_macos/${{ matrix.version }}
169170
bazel: test //ruby/... --test_env=KOKORO_RUBY_VERSION=${{ matrix.version }} --test_env=BAZEL=true ${{ matrix.ffi == 'FFI' && '--//ruby:ffi=enabled --test_env=PROTOCOL_BUFFERS_RUBY_IMPLEMENTATION=FFI' || '' }}
@@ -196,7 +197,7 @@ jobs:
196197
if: ${{ inputs.continuous-run }}
197198
uses: protocolbuffers/protobuf-ci/bazel-docker@v3
198199
with:
199-
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/ruby:6.4.0-${{ matrix.ruby }}-27cf7b86212020d7e552bc13b1e084abb971da75
200+
image: us-docker.pkg.dev/protobuf-build/containers/test/linux/ruby:7.1.2-${{ matrix.ruby }}-d9624f2aa83cba3eaf906f751d75b36aacb9aa82
200201
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
201202
bazel-cache: ruby_install/${{ matrix.ruby }}_${{ matrix.bazel }}
202203
bash: >

.github/workflows/test_rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626

2727
include:
2828
- targets: "//rust/... //src/google/protobuf/compiler/rust/..."
29-
- image: "us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.1-97f82260fd504923d8af642d567afb2d83a1959d"
29+
- image: "us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-27cf7b86212020d7e552bc13b1e084abb971da75"
3030
- bazel_cmd: "test"
3131

3232
# Override cases with custom images
3333
- config: { name: Cargo }
34-
image: "us-docker.pkg.dev/protobuf-build/containers/release/linux/rust:6.3.0-1.74.0-8858126dd9480abf91e6ce8d6e41a5cd3c03882c"
34+
image: "us-docker.pkg.dev/protobuf-build/containers/release/linux/rust:7.1.2-1.74.0-d9624f2aa83cba3eaf906f751d75b36aacb9aa82"
3535
bazel_cmd: "run"
3636
targets: "//rust/release_crates:cargo_test"
3737
name: Linux ${{ matrix.config.name }}

0 commit comments

Comments
 (0)