Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/all-features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: "3.x"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set environment variables appropriately for the build
run: |
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/centos-fmt-clippy-on-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,6 @@ jobs:
run: |
rustup component add rustfmt
rustup component add clippy
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Run the centos check within the docker image
run: |
docker run \
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/linux-builds-on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ jobs:
echo "DOCKER=$DOCKER" >> $GITHUB_ENV
- name: Fetch the docker
run: bash ci/fetch-rust-docker.bash "${TARGET}"
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Maybe build a docker from there
run: |
if [ -f "ci/docker/$DOCKER/Dockerfile" ]; then
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/linux-builds-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ jobs:
echo "DOCKER=$DOCKER" >> $GITHUB_ENV
- name: Fetch the docker
run: bash ci/fetch-rust-docker.bash "${TARGET}"
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Maybe build a docker from there
run: |
if [ -f "ci/docker/$DOCKER/Dockerfile" ]; then
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/linux-builds-on-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,6 @@ jobs:
echo "DOCKER=$DOCKER" >> $GITHUB_ENV
- name: Fetch the docker
run: bash ci/fetch-rust-docker.bash "${TARGET}"
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Maybe build a docker from there
run: |
if [ -f "ci/docker/$DOCKER/Dockerfile" ]; then
Expand Down
4 changes: 0 additions & 4 deletions ci/actions-templates/centos-fmt-clippy-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,6 @@ jobs:
run: |
rustup component add rustfmt
rustup component add clippy
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: Run the centos check within the docker image
run: |
docker run \
Expand Down
4 changes: 0 additions & 4 deletions ci/actions-templates/linux-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,6 @@ jobs:
echo "DOCKER=$DOCKER" >> $GITHUB_ENV
- name: Fetch the docker
run: bash ci/fetch-rust-docker.bash "${TARGET}"
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  with:
    repo-token: ${{ secrets.GITHUB_TOKEN }}

Seems like the canonical approach to avoid rate limiting, from the setup-protoc repo.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added this in another commit to all-features.yaml.

- name: Maybe build a docker from there
run: |
if [ -f "ci/docker/$DOCKER/Dockerfile" ]; then
Expand Down