diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2024-12-24 10:35:27 +0100 |
|---|---|---|
| committer | Lukas Wirth <lukastw97@gmail.com> | 2024-12-24 10:37:24 +0100 |
| commit | 9251d422b8c7bfad59d1efd7c4f9fa613c577cd2 (patch) | |
| tree | 9b239d35cdd0b7ea3436bcd1952650e0fcd43d1c /src | |
| parent | 91fb189652512205589b14c2e70c895b7c50995f (diff) | |
| download | rust-9251d422b8c7bfad59d1efd7c4f9fa613c577cd2.tar.gz rust-9251d422b8c7bfad59d1efd7c4f9fa613c577cd2.zip | |
Back out "internal: Disable rustc test metrics"
This backs out commit d9a08624aad55a91f839e6ee3acf7117d197cda9.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/rust-analyzer/.github/workflows/metrics.yaml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/tools/rust-analyzer/.github/workflows/metrics.yaml b/src/tools/rust-analyzer/.github/workflows/metrics.yaml index a4146d60218..9313ca237d9 100644 --- a/src/tools/rust-analyzer/.github/workflows/metrics.yaml +++ b/src/tools/rust-analyzer/.github/workflows/metrics.yaml @@ -54,7 +54,7 @@ jobs: other_metrics: strategy: matrix: - names: [self, ripgrep-13.0.0, webrender-2022, diesel-1.4.8, hyper-0.14.18] + names: [self, rustc_tests, ripgrep-13.0.0, webrender-2022, diesel-1.4.8, hyper-0.14.18] runs-on: ubuntu-latest needs: build_metrics @@ -101,6 +101,11 @@ jobs: with: name: self-${{ github.sha }} + - name: Download rustc_tests metrics + uses: actions/download-artifact@v3 + with: + name: rustc_tests-${{ github.sha }} + - name: Download ripgrep-13.0.0 metrics uses: actions/download-artifact@v4 with: @@ -129,7 +134,7 @@ jobs: chmod 700 ~/.ssh git clone --depth 1 git@github.com:rust-analyzer/metrics.git - 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 + jq -s ".[0] * .[1] * .[2] * .[3] * .[4] * .[5] * .[6]" build.json self.json rustc_tests.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 user.email=dummy@example.com commit --message 📈 |
