Remove install cmake step
This commit is contained in:
parent
445a73f599
commit
d74e54fb86
1 changed files with 4 additions and 4 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -8,10 +8,10 @@ jobs:
|
||||||
CXX: g++-9
|
CXX: g++-9
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: sudo apt-get install -y cmake
|
- name: Configure
|
||||||
- run: mkdir -p build && cd build
|
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
|
||||||
- run: cmake ..
|
- name: Build
|
||||||
- run: make
|
run: cmake --build build --target all -v
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
Reference in a new issue