We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c2de9b commit ae261abCopy full SHA for ae261ab
1 file changed
.github/workflows/linux.yaml
@@ -56,9 +56,9 @@ jobs:
56
sudo apt update
57
sudo apt install -y ninja-build ${{ matrix.deps }}
58
if [[ "${{ matrix.compiler }}" == "llvm" ]]; then
59
- sudo apt install "clang++-${{ matrix.compiler }}"
+ sudo apt install -y "clang++-${{ matrix.compiler }}"
60
elif [[ "${{ matrix.compiler }}" == "gcc" ]]; then
61
- sudo apt install "g++-${{ matrix.compiler }}"
+ sudo apt install -y "g++-${{ matrix.compiler }}"
62
fi
63
- name: Compile
64
run: |
0 commit comments