cbeed6396f
Merge commit '6fa8d51479e9a5542c67bec715a1f68e7ed057ba'
128 lines
4 KiB
YAML
128 lines
4 KiB
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
cmake-build-and-tests:
|
|
name: >-
|
|
CMake build + tests (${{ matrix.image_name }} ${{ matrix.cmake_flags }})
|
|
runs-on: ${{ matrix.image_name }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
# Do a regular and a no-libc build for each platform.
|
|
- image_name: macOS-latest
|
|
- image_name: macOS-latest
|
|
cmake_flags: -DZYAN_NO_LIBC=ON
|
|
skip_tests: yes
|
|
- image_name: windows-2022
|
|
- image_name: windows-2022
|
|
cmake_flags: -DZYAN_NO_LIBC=ON
|
|
skip_tests: yes
|
|
- image_name: ubuntu-22.04
|
|
- image_name: ubuntu-22.04
|
|
cmake_flags: -DZYAN_NO_LIBC=ON
|
|
skip_tests: yes
|
|
|
|
# Do a few more specialized configurations.
|
|
- image_name: ubuntu-22.04
|
|
cmake_flags: -DZYDIS_MINIMAL_MODE=ON -DZYDIS_FEATURE_ENCODER=OFF
|
|
skip_tests: yes
|
|
- image_name: windows-2022
|
|
cmake_flags: -TClangCL
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with: { submodules: recursive }
|
|
- name: Configuring
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
cmake -DZYAN_DEV_MODE=ON ${{ matrix.cmake_flags }} ..
|
|
- name: Building
|
|
run: |
|
|
cmake --build build --config Release
|
|
- name: Running regression tests (decoder)
|
|
run: |
|
|
cd tests
|
|
python3 regression.py test ../build/ZydisInfo
|
|
if: "matrix.image_name != 'windows-2022' && !matrix.skip_tests"
|
|
- name: Running regression tests (encoder)
|
|
run: |
|
|
cd tests
|
|
python3 regression_encoder.py ../build/ZydisFuzzReEncoding ../build/ZydisFuzzEncoder ../build/ZydisTestEncoderAbsolute
|
|
if: "matrix.image_name != 'windows-2022' && !matrix.skip_tests"
|
|
- name: Running regression tests
|
|
run: |
|
|
cd tests
|
|
python regression.py test ..\\build\\Release\\ZydisInfo.exe
|
|
if: "matrix.image_name == 'windows-2022' && !matrix.skip_tests"
|
|
|
|
msbuild-build:
|
|
name: MSBuild build (windows-2022)
|
|
runs-on: windows-2022
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with: { submodules: recursive }
|
|
- name: Add msbuild to PATH
|
|
uses: microsoft/setup-msbuild@v1.1.3
|
|
with: { vs-version: '[17,]' }
|
|
- name: Build user-mode
|
|
run: |
|
|
cd msvc
|
|
msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release MD";Platform=X64'
|
|
- name: Build kernel-mode
|
|
run: |
|
|
cd msvc
|
|
msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release Kernel";Platform=X64'
|
|
|
|
amalgamated:
|
|
name: Amalgamated build (Ubuntu 22.04)
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with: { submodules: recursive }
|
|
- name: Amalgamating sources
|
|
run: |
|
|
./assets/amalgamate.py
|
|
- name: Compiling library
|
|
run: |
|
|
cd amalgamated-dist
|
|
gcc -shared -I. -fPIC -olibzydis.so Zydis.c
|
|
|
|
fuzzing:
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sanitizer: [address, undefined, memory]
|
|
steps:
|
|
- name: Build Fuzzers (${{ matrix.sanitizer }})
|
|
id: build
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
|
with:
|
|
oss-fuzz-project-name: zydis
|
|
dry-run: false
|
|
sanitizer: ${{ matrix.sanitizer }}
|
|
- name: Run Fuzzers (${{ matrix.sanitizer }})
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
|
with:
|
|
oss-fuzz-project-name: zydis
|
|
fuzz-seconds: 600
|
|
dry-run: false
|
|
sanitizer: ${{ matrix.sanitizer }}
|
|
- name: Upload Crash
|
|
uses: actions/upload-artifact@v1
|
|
if: failure() && steps.build.outcome == 'success'
|
|
with:
|
|
name: ${{ matrix.sanitizer }}-artifacts
|
|
path: ./out/artifacts
|