Skip to content

WIP

WIP #3

Workflow file for this run

name: C++ CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: ghcr.io/odin-detector/odin-data-build:latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build eiger-detector
run: |
git describe --always && \
mkdir -p build && cd build && \
cmake -DCMAKE_INSTALL_PREFIX=/odin -DODINDATA_ROOT_DIR=/odin ../cpp && \
make -j8 VERBOSE=1 && \
make install