Merge pull request #260 from masterleinad/update_kokkos_profiling_int… #472
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: Simple build without Kokkos | |
on: [push, pull_request] | |
jobs: | |
simple-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure using CMake and compile. | |
run : | | |
# The Kokkos Tools systemtap connector requires 'dtrace' | |
sudo apt update | |
sudo apt --yes --no-install-recommends install systemtap-sdt-dev | |
cmake -B build -DCMAKE_CXX_FLAGS="-Wall -Wextra -Werror" | |
cmake --build build | |
cmake --install build --prefix ${PWD}/install |