forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#115927 - lnicola:sync-from-ra, r=<try>
⬆️ `rust-analyzer` r? `@ghost`
- Loading branch information
Showing
195 changed files
with
5,763 additions
and
2,740 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ jobs: | |
other_metrics: | ||
strategy: | ||
matrix: | ||
names: [self, ripgrep, webrender, diesel] | ||
names: [self, ripgrep-13.0.0, webrender-2022, diesel-1.4.8, hyper-0.14.18] | ||
runs-on: ubuntu-latest | ||
needs: [setup_cargo, build_metrics] | ||
|
||
|
@@ -92,7 +92,7 @@ jobs: | |
key: ${{ runner.os }}-target-${{ github.sha }} | ||
|
||
- name: Collect metrics | ||
run: cargo xtask metrics ${{ matrix.names }} | ||
run: cargo xtask metrics "${{ matrix.names }}" | ||
|
||
- name: Upload metrics | ||
uses: actions/upload-artifact@v3 | ||
|
@@ -118,25 +118,30 @@ jobs: | |
with: | ||
name: self-${{ github.sha }} | ||
|
||
- name: Download ripgrep metrics | ||
- name: Download ripgrep-13.0.0 metrics | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: ripgrep-${{ github.sha }} | ||
name: ripgrep-13.0.0-${{ github.sha }} | ||
|
||
- name: Download webrender metrics | ||
- name: Download webrender-2022 metrics | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: webrender-${{ github.sha }} | ||
name: webrender-2022-${{ github.sha }} | ||
|
||
- name: Download diesel metrics | ||
- name: Download diesel-1.4.8 metrics | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: diesel-${{ github.sha }} | ||
name: diesel-1.4.8-${{ github.sha }} | ||
|
||
- name: Download hyper-0.14.18 metrics | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: hyper-0.14.18-${{ github.sha }} | ||
|
||
- name: Combine json | ||
run: | | ||
git clone --depth 1 https://[email protected]/rust-analyzer/metrics.git | ||
jq -s ".[0] * .[1] * .[2] * .[3] * .[4]" build.json self.json ripgrep.json webrender.json diesel.json -c >> metrics/metrics.json | ||
jq -s ".[0] * .[1] * .[2] * .[3] * .[4] * .[5]" build.json self.json ripgrep-13.0.0.json webrender-2022.json diesel-1.4.8.json hyper-0.14.18.json -c >> metrics/metrics.json | ||
cd metrics | ||
git add . | ||
git -c user.name=Bot -c [email protected] commit --message 📈 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.