Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
run:
shell: bash
container:
image: silkeh/clang:18
image: silkeh/clang:19
options: --user root
timeout-minutes: 10
steps:
Expand All @@ -23,13 +23,33 @@ jobs:
cmake --build build --target lin_check_test
- name: Run lin check test
run: ctest --test-dir build -R "^LinearizabilityCheckerCounterTest" -V
# pass-tests:
# runs-on: ubuntu-latest
# defaults:
# run:
# shell: bash
# container:
# image: silkeh/clang:19
# options: --user root
# timeout-minutes: 10
# steps:
# - name: Install deps
# run: apt update && apt install -y git ninja-build valgrind libboost-context-dev libgflags-dev
# - name: Check out repository code
# uses: actions/checkout@v4
# - name: Build
# run: |
# cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=RelWithAssert
# cmake --build build --target CoYieldPass
# - name: Run lin check test
# run: ctest --test-dir build -L llvm-pass -V
verifying-test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
container:
image: silkeh/clang:18
image: silkeh/clang:19
options: --user root
timeout-minutes: 10
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM silkeh/clang:19 AS ltest
RUN apt update && apt install -y git ninja-build valgrind libboost-context-dev libgflags-dev libstdc++-11-dev
RUN mv /usr/lib/gcc/x86_64-linux-gnu/12 /usr/lib/gcc/x86_64-linux-gnu/_12

FROM ltest as blocking
FROM ltest AS blocking
RUN apt install -y pkg-config libcapstone-dev && \
git clone https://github.com/Kirillog/syscall_intercept.git && \
cmake syscall_intercept -G Ninja -B syscall_intercept/build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang && \
Expand Down
Loading