1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2025-01-08 22:30:55 +00:00

ci: Use CMake when building on Linux

This commit is contained in:
Anichitei Ionel-Cristinel 2020-11-17 11:33:55 +02:00 committed by GitHub
parent 2ebfd04da0
commit baad8a4bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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