File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -22,23 +22,21 @@ jobs:
2222 - uses : actions/checkout@v2
2323 with :
2424 ref : refs/heads/master
25-
2625 - name : install gcc 11
2726 if : startsWith(matrix.os, 'ubuntu')
2827 run : |
2928 sudo apt-get install -y gcc-11 g++-11
3029 echo "CC=gcc-11" >> $GITHUB_ENV
3130 echo "CXX=g++-11" >> $GITHUB_ENV
32- - name: Build-Release
31+ - name : Build-Release
3332 run : |
3433 mkdir build
3534 cd build
3635 cmake .. -DCMAKE_USER_MAKE_RULES_OVERRIDE="${{ github.workspace }}/cmake/flags_override.cmake"
3736 cmake --build . --config Release
3837 ctest -V -C Release
3938 cmake --install . --config Release --prefix ${{ github.workspace }}/artifact/
40-
41- - name : Upload
39+ - name : Upload
4240 uses : actions/upload-artifact@v2
4341 with :
4442 name : ${{ matrix.platform }}
You can’t perform that action at this time.
0 commit comments