Skip to content

Commit

Permalink
Reinstate protoc for a couple of GHA jobs (#1607)
Browse files Browse the repository at this point in the history
Looks like #1604 broke the build :(
  • Loading branch information
richvdh authored Mar 2, 2023
1 parent bdb9d27 commit 2fe08a9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/bindings_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v1

# install protoc in case we end up rebuilding opentelemetry-proto
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust
uses: dtolnay/rust-toolchain@nightly

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,11 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v3

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust
uses: dtolnay/rust-toolchain@nightly
with:
Expand Down

0 comments on commit 2fe08a9

Please sign in to comment.