python: look for Numpy to fill Python_NumPy_INCLUDE_DIR hint #200
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: cmake CI of jrl-cmakemodules | |
on: [push,pull_request] | |
jobs: | |
build-ubuntu: | |
runs-on: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run project tests | |
run: | | |
set -e | |
set -x | |
cd _unittests | |
CMAKE_BIN="cmake" | |
$CMAKE_BIN --version | |
./run_unit_tests.sh | |
- name: Run script tests | |
run: | | |
set -e | |
set -x | |
cd _unittests | |
ln -s .. cmake | |
CMAKE_BIN="cmake" | |
$CMAKE_BIN --version | |
$CMAKE_BIN -P test_pkg-config.cmake |