Skip to content

test checkout v4

test checkout v4 #16

Workflow file for this run

name: test-docker
on: push
jobs:
build-with-llvm:
runs-on: self-hosted
container:
image: registry:443/clang-debian11:staging
credentials:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
steps:
- name: Checkout plugin sources
uses: actions/checkout@v4
with:
path: src/ollvm
- name: Compile plugin with LLVM 16
run: |
cmake \
-S src/llvm-16 \
-B build/llvm-16 \
-G Ninja \
-D CMAKE_VERBOSE_MAKEFILE=On \
-D LLVM_DIR=/usr/local/clang-install/lib/cmake \
-D BUILD_DUMMY=On
cmake --build build/llvm-16