ci: Use CMake when building on Linux

pull/28/head
Anichitei Ionel-Cristinel 4 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: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build bddisasm and bdshemu - name: Build bddisasm and bdshemu
run: make -j$(nproc) run: |
mkdir build
cd build
cmake ..
make
cd -
- name: Install rapidjson - name: Install rapidjson
uses: actions/checkout@master uses: actions/checkout@master
with: with:

Loading…
Cancel
Save