Use taiki-e/install-action for installing some tools in CI

This commit is contained in:
Quentin Gliech
2025-01-06 10:49:46 +01:00
parent 6071b80f30
commit 57d5af966d
4 changed files with 16 additions and 11 deletions

View File

@@ -141,11 +141,10 @@ jobs:
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.7
- name: Download grcov
run: |
mkdir -p "${HOME}/.local/bin"
curl -sL https://github.com/mozilla/grcov/releases/download/v0.8.19/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf - -C "${HOME}/.local/bin"
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install grcov
uses: taiki-e/install-action@v2
with:
tool: grcov
- name: Run test suite with profiling enabled
run: |