Skip to content

Commit f82a8ed

Browse files
authored
chore: remove protoc installation in generation check (#13717)
For googleapis/librarian#6558
1 parent b5a7c4a commit f82a8ed

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

.github/workflows/librarian_generation_check.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,6 @@ jobs:
5454
V=$(go run github.com/googleapis/librarian/cmd/librarian@latest config get version)
5555
echo "Installing librarian version $V"
5656
go install github.com/googleapis/librarian/cmd/librarian@$V
57-
- name: Install protoc
58-
run: |
59-
set -e
60-
VERSION="33.2"
61-
curl -fsSL --retry 5 --retry-delay 15 -o /tmp/protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v$VERSION/protoc-$VERSION-linux-x86_64.zip"
62-
cd /usr/local
63-
sudo unzip -o /tmp/protoc.zip
64-
protoc --version
6557
- uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4
6658
with:
6759
java-version: "17"

java-showcase/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ the Showcase API which can communicate with a local Showcase server to perform i
88
## Requirements
99

1010
* Install [Go](https://go.dev) in your `PATH` (version 1.20 or later).
11-
* Install the [protoc](https://github.com/protocolbuffers/protobuf/releases) compiler in your `PATH`.
1211

1312
## Installing the Server
1413

@@ -77,7 +76,7 @@ mvn verify -P enable-integration-tests
7776
This verify check compares the current checked-in files in `java-showcase` against a newly generated client.
7877

7978
### Prerequisites (One-time Setup)
80-
Make sure you have **Go** and **protoc** installed and available in your `PATH` (see the [Requirements](#requirements) section), then run the following setup steps from the repository root:
79+
Make sure you have **Go** installed and available in your `PATH` (see the [Requirements](#requirements) section), then run the following setup steps from the repository root:
8180

8281
```shell
8382
# Setup and activate Python virtual environment

0 commit comments

Comments
 (0)