We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09be1fc commit b3e2455Copy full SHA for b3e2455
.github/workflows/build_and_test.yml
@@ -56,15 +56,15 @@ jobs:
56
uses: actions/checkout@v4
57
58
# 2. Setup C++ environment (Linux/macOS)
59
- # - name: Setup GCC/Clang (Linux)
60
- # if: matrix.os == 'ubuntu-latest'
61
- # run: |
62
- # sudo apt-get update
63
- # if [ "${{ matrix.compiler }}" = "gcc" ]; then
64
- # sudo apt-get install -y gcc-11 g++-11
65
- # else
66
- # sudo apt-get install -y clang-14 clang++-14
67
- # fi
+ - name: Setup GCC/Clang (Linux)
+ if: matrix.os == 'ubuntu-latest'
+ run: |
+ sudo apt-get update
+ if [ "${{ matrix.compiler }}" = "gcc" ]; then
+ sudo apt-get install -y gcc-11 g++-11
+ else
+ sudo apt-get install -y clang-14 clang++-14
+ fi
68
69
# 3. Setup C++ environment (macOS)
70
- name: Setup Clang (macOS)
0 commit comments