File tree Expand file tree Collapse file tree 1 file changed +1
-17
lines changed
Expand file tree Collapse file tree 1 file changed +1
-17
lines changed Original file line number Diff line number Diff line change @@ -124,25 +124,9 @@ jobs:
124124 name : " Compiler: ${{ matrix.compilers.class }} ${{ matrix.compilers.version }}"
125125 steps :
126126 - uses : actions/checkout@v4
127- - name : Install Compiler
128- id : install-compiler
129- run : |
130- if [ "${{ matrix.compilers.class }}" = "gcc" ]; then
131- CC=gcc-${{ matrix.compilers.version }}
132- CXX=g++-${{ matrix.compilers.version }}
133- else
134- CC=clang-${{ matrix.compilers.version }}
135- CXX=clang++-${{ matrix.compilers.version }}
136- fi
137-
138- echo "CC=$CC" >> "$GITHUB_OUTPUT"
139- echo "CXX=$CXX" >> "$GITHUB_OUTPUT"
140127 - name : Configure CMake
141- run : |
142- cmake -B build -S . -DCMAKE_CXX_STANDARD=20
128+ run : cmake -B build -S . -DCMAKE_CXX_STANDARD=20
143129 env :
144- CC : ${{ steps.install-compiler.outputs.CC }}
145- CXX : ${{ steps.install-compiler.outputs.CXX }}
146130 CMAKE_GENERATOR : " Ninja Multi-Config"
147131 - name : Build Debug
148132 run : |
You can’t perform that action at this time.
0 commit comments