Skip to content

add github ci12

add github ci12 #1

Workflow file for this run

name: Build and run tests
on:
workflow_call:
inputs:
use-system-libraries: # the variable you can use in place of a matrix
required: true
type: string
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Check failure on line 13 in .github/workflows/common-workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/common-workflow.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- uses: conda-incubator/setup-miniconda@v3
if: ${{ contains(inputs.use-system-libraries, 'ON')}}
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
run: |
conda list
- name: build with fetch content
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE="Debug" -DAARE_PYTHON_BINDINGS="OFF" -DAARE_SYSTEM_LIBRARIES=${{inputs.use-system-libraries}}
cmake --build . -j 10
- name: run tests
run: |
cd build/
./run_tests
- name: run examples
run: |
cd build/examples/
ls *_example
find -name "*_example" | xargs -I {} -n 1 -t bash -c {}