We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1cc3a0 commit 87a3114Copy full SHA for 87a3114
1 file changed
.github/workflows/build.yaml
@@ -34,16 +34,16 @@ jobs:
34
uses: dtolnay/rust-toolchain@stable
35
with:
36
targets: ${{ matrix.target }}
37
- - name: Install GCC 11 on Linux
38
- if: runner.os == 'Linux'
39
- run: |
40
- sudo apt-get update
41
- sudo apt-get install -y gcc-11 g++-11
42
- - name: Set CC and CXX to gcc-11
43
44
45
- echo "CC=gcc-11" >> $GITHUB_ENV
46
- echo "CXX=g++-11" >> $GITHUB_ENV
+ - name: Install GCC 11 on Linux
+ if: runner.os == 'Linux'
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y gcc-11 g++-11
+ - name: Set CC and CXX to gcc-11
+ echo "CC=gcc-11" >> $GITHUB_ENV
+ echo "CXX=g++-11" >> $GITHUB_ENV
47
- name: Cache dependencies
48
uses: actions/cache@v4
49
0 commit comments