diff options
| author | bors <bors@rust-lang.org> | 2024-02-23 18:33:46 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-02-23 18:33:46 +0000 |
| commit | c45b3550c376fc616ee47f016ce2bbf6f3904541 (patch) | |
| tree | a765fd1926628a38b691b3e22d0f50c299e53b43 | |
| parent | 84c5481349082c4b9db442591f6d6ed9440e163b (diff) | |
| parent | d9a08624aad55a91f839e6ee3acf7117d197cda9 (diff) | |
| download | rust-c45b3550c376fc616ee47f016ce2bbf6f3904541.tar.gz rust-c45b3550c376fc616ee47f016ce2bbf6f3904541.zip | |
Auto merge of #16649 - Veykril:metrics-rustc, r=Veykril
internal: Disable rustc test metrics The CI job for them frequently gets stuck and I am unsure why
| -rw-r--r-- | .github/workflows/metrics.yaml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/metrics.yaml b/.github/workflows/metrics.yaml index be9f504e599..87a1bd53a5c 100644 --- a/.github/workflows/metrics.yaml +++ b/.github/workflows/metrics.yaml @@ -67,7 +67,7 @@ jobs: other_metrics: strategy: matrix: - names: [self, rustc_tests, ripgrep-13.0.0, webrender-2022, diesel-1.4.8, hyper-0.14.18] + 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] @@ -118,11 +118,6 @@ 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@v3 with: @@ -151,7 +146,7 @@ jobs: chmod 700 ~/.ssh git clone --depth 1 git@github.com:rust-analyzer/metrics.git - 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 + jq -s ".[0] * .[1] * .[2] * .[3] * .[4] * .[5] * .[6]" 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 user.email=dummy@example.com commit --message 📈 |
