Autodocs #121
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: Compile without helpers | |
on: [push, pull_request] | |
jobs: | |
compile-without-helpers: | |
name: Compile without helpers | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup conda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
miniconda-version: "latest" | |
mamba-version: "*" | |
channels: conda-forge | |
python-version: '3.12' | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: mamba install root='6.32.2' | |
- name: Build | |
shell: bash -l {0} | |
env: | |
COMPONENTS: calibration display fit mfile-root | |
run: | | |
for COMPONENT in $COMPONENTS; do | |
cd ${HOME} | |
mkdir build-${COMPONENT} | |
cd build-${COMPONENT} | |
CC=gcc-10 CXX=g++-10 cmake ${GITHUB_WORKSPACE}/hdtv/rootext/${COMPONENT} | |
CC=gcc-10 CXX=g++-10 cmake --build . | |
done |