refactor database module data #9
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: conan | |
on: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
pull_request: | |
env: | |
CC: gcc-13 | |
CXX: g++-13 | |
jobs: | |
conan: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install conan and ninja | |
run: pip install conan ninja | |
- name: Configure Conan profile | |
run: | | |
conan profile detect | |
- name: Install dependencies | |
run: conan install conanfile.txt -r conancenter -s compiler.cppstd=20 --build=missing | |
- name: CMake configure | |
run: | | |
cmake -G Ninja \ | |
-DUSE_SYSTEM_DEPENDENCIES:BOOL=ON \ | |
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \ | |
-DCMAKE_CXX_COMPILER=g++-13 \ | |
-DCMAKE_C_COMPILER=gcc-13 \ | |
-DBUILD_TESTING:BOOL=ON \ | |
--preset=conan-release | |
- name: CMake Build | |
run: cmake --build --preset=conan-release | |
- name: Run unit tests | |
working-directory: ${{github.workspace}}/build/Release/tests | |
run: ctest --print-output-on-failure |