ci better conan workaround #32
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Unlogic CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Install System Dependencies | |
run: sudo apt install -y build-essential cmake llvm-17-dev wget ninja-build bison flex | |
- name: Install Conan | |
run: wget https://github.com/conan-io/conan/releases/download/2.4.1/conan-2.4.1-amd64.deb && sudo dpkg -i conan-2.4.1-amd64.deb | |
- name: Configure Conan | |
run: sudo conan profile detect && conan profile detect | |
- uses: actions/checkout@v4 | |
- name: Configure Project and Install Conan Dependencies | |
run: mkdir cmake-build-release && sudo conan install . --output-folder="cmake-build-release" --build=missing -s build_type="Release" -c tools.system.package_manager:mode=install -c tools.system.package_manager:sudo=True | |
- name: Configure Project | |
run: cd cmake-build-release && cmake .. -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake" -DCMAKE_BUILD_TYPE=Release -G "Ninja" | |
- name: Build Project | |
run: cd cmake-build-release && cmake --build . --target unlogic-test | |
- name: Unlogic Tests | |
run: cd cmake-build-release && ./unlogic-test |