Skip to content

Commit 17b7ab0

Browse files
committed
Auto merge of #8988 - xFrednet:8947-test-monster-in-bors-ci, r=flip1995
Test metadata collection in Bors CI workflow This PR adds a new check to bors CI workflows, which ensures that the metadata collection success, when it's run as part of the `deploy` script. I've only added it to bors workflows, as the runtime will be high while it'll also succeed most of the time. This is a preparation for #8947. --- changelog: none r? `@ghost`
2 parents b95ce0e + c6d04ec commit 17b7ab0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/clippy_bors.yml

+19
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,25 @@ jobs:
143143
env:
144144
OS: ${{ runner.os }}
145145

146+
metadata_collection:
147+
needs: base
148+
runs-on: ubuntu-latest
149+
150+
steps:
151+
# Setup
152+
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
153+
with:
154+
github_token: "${{ secrets.github_token }}"
155+
156+
- name: Checkout
157+
uses: actions/[email protected]
158+
159+
- name: Install toolchain
160+
run: rustup show active-toolchain
161+
162+
- name: Test metadata collection
163+
run: cargo collect-metadata
164+
146165
integration_build:
147166
needs: changelog
148167
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)