1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-18 13:38:07 +00:00
bddisasm/.github/workflows/ci.yml

93 lines
2.1 KiB
YAML
Raw Normal View History

name: C/C++ CI
on:
push:
branches: [ master ]
2020-07-31 15:12:55 +00:00
paths-ignore:
- '*.md'
- 'docs/**'
- 'isagenerator/**'
- 'bddisasm_test/**'
- 'bdshemu_test/**'
- 'LICENSE'
pull_request:
branches: [ master ]
2020-07-31 15:12:55 +00:00
paths-ignore:
- '*.md'
- 'docs/**'
- 'isagenerator/**'
- 'bddisasm_test/**'
- 'bdshemu_test/**'
- 'LICENSE'
jobs:
2020-07-31 14:59:54 +00:00
Linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build bddisasm and bdshemu
run: make -j$(nproc)
- name: Install rapidjson
uses: actions/checkout@master
with:
repository: Tencent/rapidjson
path: rapidjson
- name: Build dependencies
run: |
cd rapidjson
mkdir _build
cd _build
cmake ..
make -j$(nproc)
sudo make install
cd ..
cd ..
- name: Build disasmtool_lix
run: |
cd disasmtool_lix
mkdir _build
cd _build
cmake ..
make -j$(nproc)
cd ..
cd ..
- name: Install setuptools
run: |
python3 -m pip install --upgrade pip
python3 -m pip install setuptools
2020-08-04 11:13:16 +00:00
- name: Build pybddisasm
2020-07-31 14:25:43 +00:00
run: |
sudo make install
2020-08-04 11:13:16 +00:00
cd pybddisasm
2020-07-31 14:25:43 +00:00
python3 setup.py build
cd ..
2020-07-31 14:58:48 +00:00
2020-07-31 14:59:54 +00:00
Windows-build:
2020-07-31 14:58:48 +00:00
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
2020-07-31 14:58:48 +00:00
- name: Build bddisasm and bdshemu for x64
run: MSBuild /t:Rebuild /p:Configuration=Release /p:Platform=x64 bddisasm.sln
- name: Build bddisasm and bdshemu for Win32
run: MSBuild /t:Rebuild /p:Configuration=Release /p:Platform=Win32 bddisasm.sln
2020-09-22 15:04:27 +00:00
Code-checks:
2020-09-22 15:04:27 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install cppcheck
run: sudo apt install -y cppcheck
- name: Run cppcheck
run: cppcheck --error-exitcode=1 --language=c \
--enable=all --suppress=missingIncludeSystem --suppress=unusedStructMember --suppress=unusedFunction \
-I inc/ -I inc/bdshemu -I bddisasm/include bddisasm/ bdshemu/ \
/