1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-12-22 22:18:09 +00:00

build: Try to build on macos

This commit is contained in:
Anichitei Ionel-Cristinel 2024-02-23 12:21:11 +02:00
parent 357b95d652
commit afc3e94801
No known key found for this signature in database
GPG Key ID: D61EBA6823F1172E

View File

@ -117,6 +117,21 @@ jobs:
ninja
cd -
jobs:
Macos-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build all
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc)
cd -
Code-checks:
runs-on: ubuntu-latest