Skip to content

Commit e885ab1

Browse files
committed
还原修改
1 parent 7c77d0e commit e885ab1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)