add github ci6 #6
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: Build and run tests | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
use-system-libraries: ["ON","OFF"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install dependencies | ||
if: matrix.use-system-libraries=="ON" | ||
Check failure on line 12 in .github/workflows/build-and-test.yml GitHub Actions / Build and run testsInvalid workflow file
|
||
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=${{matrix.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 {} | ||