Skip to content

Updating documentation part 9 #32

Updating documentation part 9

Updating documentation part 9 #32

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
cpu-build:
runs-on: ubuntu-latest
steps:
- name: Install Boost headers
run: sudo apt-get update && sudo apt-get install -y libboost-all-dev
- uses: actions/checkout@v4
- name: Install toolchain
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake ninja-build
- name: Configure (CPU-only)
run: |
cmake -S . -B build -G Ninja -DDMFE_WITH_CUDA=OFF -DCMAKE_BUILD_TYPE=Release
- name: Build
run: |
cmake --build build -j 2
- name: Smoke test
run: |
./RG-Evo -v || true