Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update tonic + prost #669

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/build-and-test-bridge.yml
Expand Up @@ -53,6 +53,11 @@ jobs:
# to disallow that.
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup protoc (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install -y protobuf-compiler
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Duplicate checksums file
run: cp wasm/checksums.json wasm/original-checksums.json
- name: Build WASM
Expand Down Expand Up @@ -139,6 +144,16 @@ jobs:
with:
role-to-assume: arn:aws:iam::375643557360:role/anoma-github-action-ci-master
aws-region: eu-west-1
- name: Setup protoc (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install -y protobuf-compiler
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Setup protoc (macos-latest)
if: matrix.os == 'macos-latest'
run: |
brew install protobuf
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Install sccache (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
env:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-and-test.yml
Expand Up @@ -55,6 +55,11 @@ jobs:
# to disallow that.
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup protoc (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install -y protobuf-compiler
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Duplicate checksums file
run: cp wasm/checksums.json wasm/original-checksums.json
- name: Build WASM
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/checks.yml
Expand Up @@ -51,6 +51,11 @@ jobs:
# See comment in build-and-test.yml
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup protoc (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install -y protobuf-compiler
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Setup rust toolchain
uses: oxidecomputer/actions-rs_toolchain@ad3f86084a8a5acf2c09cb691421b31cf8af7a36
with:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/docs.yml
Expand Up @@ -75,6 +75,11 @@ jobs:
with:
role-to-assume: arn:aws:iam::375643557360:role/anoma-github-action-ci-master
aws-region: eu-west-1
- name: Setup protoc (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install -y protobuf-compiler
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Install sccache (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
env:
Expand Down Expand Up @@ -162,6 +167,11 @@ jobs:
with:
role-to-assume: arn:aws:iam::375643557360:role/anoma-github-action-ci-master
aws-region: eu-west-1
- name: Setup protoc (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install -y protobuf-compiler
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Install sccache (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
env:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -41,6 +41,16 @@ jobs:
with:
role-to-assume: arn:aws:iam::375643557360:role/anoma-github-action-ci-master
aws-region: eu-west-1
- name: Setup protoc (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt install -y protobuf-compiler
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Setup protoc (macos-latest)
if: matrix.os == 'macos-latest'
run: |
brew install protobuf
echo "PROTOC=$(which protoc)" >> $GITHUB_ENV
- name: Install sccache (ubuntu-latest)
if: matrix.os == 'ubuntu-latest'
env:
Expand Down