Skip to content

Adopt some aspects of Google's C++ style guide. #64

Adopt some aspects of Google's C++ style guide.

Adopt some aspects of Google's C++ style guide. #64

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Check CMake install
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Install tatami_chunked
run: |
git clone https://github.com/tatami-inc/tatami_chunked dep-tatami_chunked --depth=1
cd dep-tatami_chunked
cmake -S . -B build -DTATAMI_CHUNKED_TESTS=OFF
sudo cmake --install build
- name: Install HDF5
run: sudo apt-get install libhdf5-dev
- name: Configure the build
run: cmake -S . -B build -DTATAMI_HDF5_FETCH_EXTERN=OFF -DTATAMI_HDF5_TESTS=OFF
- name: Install the library
run: sudo cmake --install build
- name: Test downstream usage
run: |
mkdir _downstream
touch _downstream/source.cpp
cat << EOF > _downstream/CMakeLists.txt
cmake_minimum_required(VERSION 3.24)
project(test_install)
add_executable(whee source.cpp)
find_package(tatami_tatami_hdf5)
target_link_libraries(whee tatami::tatami_hdf5)
EOF
cd _downstream && cmake -S . -B build