Archived
1
Fork 0

Remove install cmake step

This commit is contained in:
redstrate 2021-02-15 19:54:21 -05:00
parent 445a73f599
commit d74e54fb86

View file

@ -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