Skip to content

Commit

Permalink
chore: bump prost to 0.10, disable rustls in aws-sdk (#1585)
Browse files Browse the repository at this point in the history
* chore: bump prost to 0.10, disable rustls in aws-sdk

Signed-off-by: Alex Chi <[email protected]>

* install protobuf compiler

Signed-off-by: Alex Chi <[email protected]>
  • Loading branch information
skyzh authored Apr 4, 2022
1 parent def85b3 commit e156ac7
Show file tree
Hide file tree
Showing 19 changed files with 255 additions and 183 deletions.
7 changes: 6 additions & 1 deletion .github/workflow-template/jobs/compute-node-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ jobs:
with:
fetch-depth: 0

- name: Install rust toolchain
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflow-template/jobs/compute-node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ jobs:
with:
fetch-depth: 0

- name: Install rust toolchain
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflow-template/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
RW_CARGO_MAKE_URL: https://github.com/sagiegurari/cargo-make/releases/download/0.35.10/cargo-make-v0.35.10-x86_64-unknown-linux-musl.zip
RW_CARGO_MAKE_DIRECTORY: cargo-make-v0.35.10-x86_64-unknown-linux-musl
RUSTFLAGS: -D warnings
PROTOC_NO_VENDOR: true

jobs:
# Start 2 runners (a/b) to run build and test in parallel. Note that we also have runner C in main for release build.
Expand Down
19 changes: 16 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ env:
RW_CARGO_MAKE_URL: https://github.com/sagiegurari/cargo-make/releases/download/0.35.10/cargo-make-v0.35.10-x86_64-unknown-linux-musl.zip
RW_CARGO_MAKE_DIRECTORY: cargo-make-v0.35.10-x86_64-unknown-linux-musl
RUSTFLAGS: -D warnings
PROTOC_NO_VENDOR: true
jobs:
start-runner-a:
name: ec2-start-a
Expand Down Expand Up @@ -543,7 +544,11 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install rust toolchain
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
Expand Down Expand Up @@ -604,7 +609,11 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install rust toolchain
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
Expand Down Expand Up @@ -666,7 +675,11 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install rust toolchain
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ env:
RW_CARGO_MAKE_URL: https://github.com/sagiegurari/cargo-make/releases/download/0.35.10/cargo-make-v0.35.10-x86_64-unknown-linux-musl.zip
RW_CARGO_MAKE_DIRECTORY: cargo-make-v0.35.10-x86_64-unknown-linux-musl
RUSTFLAGS: -D warnings
PROTOC_NO_VENDOR: true
jobs:
start-runner-a:
name: ec2-start-a
Expand Down Expand Up @@ -390,7 +391,11 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install rust toolchain
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
Expand Down Expand Up @@ -452,7 +457,11 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install rust toolchain
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
Expand Down
Loading

0 comments on commit e156ac7

Please sign in to comment.