ci: Use CMake when building on Linux

pull/28/head
Anichitei Ionel-Cristinel 3 years ago committed by GitHub
parent 2ebfd04da0
commit baad8a4bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,7 +28,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build bddisasm and bdshemu
run: make -j$(nproc)
run: |
mkdir build
cd build
cmake ..
make
cd -
- name: Install rapidjson
uses: actions/checkout@master
with:

Loading…
Cancel
Save