Update kp_memory_usage.cpp: remove unsigned via dalg24's suggestion #619
This file contains hidden or 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 |