Skip to content

add github ci20

add github ci20 #7

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
- name: install dependencies
if: ${{ contains(inputs.use-system-libraries, 'ON')}}
run: echo "AAA"
- 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: |

Check failure on line 28 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 28
export PROJECT_ROOT_DIR="."
cd build/examples/
ls *_example
find -name "*_example" | xargs -I {} -n 1 -t bash -c {}