test: refactor decompilation script testing framework and use lit runner #92
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2024, Trail of Bits, Inc. | |
# All rights reserved. | |
# | |
# This source code is licensed in accordance with the terms specified in | |
# the LICENSE file found in the root directory of this source tree. | |
# | |
name: Build | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
llvm-version: [18] | |
image-version: [22.04] | |
build-type: [Release, Debug] | |
sanitizers: [ON, OFF] | |
runs-on: ubuntu-${{ matrix.image-version }} | |
timeout-minutes: 60 | |
container: | |
image: | |
ghcr.io/lifting-bits/patchestry-ubuntu-${{ matrix.image-version }}-llvm-${{ matrix.llvm-version }}-dev:latest | |
env: | |
CMAKE_PREFIX_PATH: "/usr/lib/llvm-${{ matrix.llvm-version }}/lib/cmake/mlir/;/usr/lib/llvm-${{ matrix.llvm-version }}/lib/cmake/clang/" | |
LLVM_EXTERNAL_LIT: "/usr/local/bin/lit" | |
ENABLE_SANITIZER_UNDEFINED_BEHAVIOR: ${{ matrix.sanitizers }} | |
ENABLE_SANITIZER_ADDRESS: ${{ matrix.sanitizers }} | |
steps: | |
- name: Clone the Patchestry repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: Configure build - sanitizers ${{ matrix.sanitizers }} | |
run: cmake --preset ci | |
- name: Build ${{ matrix.build-type }} with sanitizers set ${{ matrix.sanitizers }} | |
run: cmake --build --preset ci --config ${{ matrix.build-type }} -j $(nproc) | |
#- name: Test ${{ matrix.build-type }} with sanitizers set ${{ matrix.sanitizers }} | |
# run: | | |
# cmake --preset ci | |
# ctest --preset ci --build-config ${{ matrix.build-type }} | |
test: | |
needs: build | |
strategy: | |
matrix: | |
llvm-version: [18] | |
image-version: [22.04] | |
build-type: [Release, Debug] | |
sanitizers: [ON, OFF] | |
runs-on: ubuntu-${{ matrix.image-version }} | |
env: | |
CMAKE_PREFIX_PATH: "/usr/lib/llvm-${{ matrix.llvm-version }}/lib/cmake/mlir/;/usr/lib/llvm-${{ matrix.llvm-version }}/lib/cmake/clang/" | |
LLVM_EXTERNAL_LIT: "/usr/local/bin/lit" | |
ENABLE_SANITIZER_UNDEFINED_BEHAVIOR: ${{ matrix.sanitizers }} | |
ENABLE_SANITIZER_ADDRESS: ${{ matrix.sanitizers }} | |
steps: | |
- name: Clone the Patchestry repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: Install CTest dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
software-properties-common \ | |
ninja-build python3-pip \ | |
ccache cmake lld lcov \ | |
doxygen libzstd-dev | |
curl -fsSL https://get.docker.com -o get-docker.sh \ | |
&& sh get-docker.sh \ | |
&& rm get-docker.sh | |
curl -fsSL https://apt.llvm.org/llvm.sh -o llvm.sh && \ | |
chmod +x llvm.sh && \ | |
./llvm.sh ${{ matrix.llvm-version }} all && \ | |
rm llvm.sh | |
- name: Run CTest | |
run: | | |
cmake --preset ci | |
ctest --preset ci --build-config ${{ matrix.build-type }} |