Add vcpkg integration #210
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
--- | |
name: CPP CI ApiTracing | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- 'vmicore/src/include/**.h' | |
- 'vmicore/test/include/**.h' | |
- 'plugins/apitracing/**.h' | |
- 'plugins/apitracing/**.cpp' | |
- 'plugins/apitracing/**/CMakeLists.txt' | |
- 'plugins/apitracing/CMakePresets.json' | |
- 'plugins/apitracing/.clang-tidy' | |
- 'plugins/apitracing/.clang-format' | |
- 'plugins/apitracing/sonar-project.properties' | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- 'vmicore/src/include/**.h' | |
- 'vmicore/test/include/**.h' | |
- 'plugins/apitracing/**.h' | |
- 'plugins/apitracing/**.cpp' | |
- 'plugins/apitracing/**/CMakeLists.txt' | |
- 'plugins/apitracing/CMakePresets.json' | |
- 'plugins/apitracing/.clang-tidy' | |
- 'plugins/apitracing/.clang-format' | |
- 'plugins/apitracing/sonar-project.properties' | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
container: | |
image: gdatacyberdefense/clang-format:16 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Perform C++ format check | |
run: find plugins/apitracing/ -iname *.h -o -iname *.cpp | xargs clang-format --style=file --dry-run --Werror | |
build_apitracing: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/gdatasoftwareag/vmi-build | |
strategy: | |
matrix: | |
compiler: [ clang, gcc ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Export GitHub Actions cache environment variables | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- name: Build and test apitracing | |
run: | | |
cmake --preset ${{ matrix.compiler }}-debug | |
cmake --build --preset ${{ matrix.compiler }}-build-debug | |
ctest --preset ${{ matrix.compiler }}-test | |
working-directory: plugins/apitracing | |
env: | |
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" |