Skip to content

Commit

Permalink
Use already installed rustc if available [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Jul 21, 2023
1 parent 7fdf98e commit 22f9735
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/compilers.yml
Expand Up @@ -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: >
Expand Down

0 comments on commit 22f9735

Please sign in to comment.