diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index b95a865e2c9e1e..a8e417f9a6fe6d 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -241,7 +241,11 @@ jobs: - name: Install Rust if: ${{ matrix.entry.rust }} - run: sudo apt-get update && sudo apt install -y rustc + run: | + command -v rustc || + { + sudo apt-get update && sudo apt install -y rustc + } - name: Run configure run: >