Mini clean-up. #31
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: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
cuda: "12.0.0" | |
env: | |
config: "Release" | |
steps: | |
- name: Install dependencies | |
run: sudo apt-get install -y libhwloc-dev | |
- name: Install CUDA | |
uses: Jimver/[email protected] | |
if: runner.os == 'Linux' | |
with: | |
sub-packages: '["nvcc", "nvrtc", "cudart"]' | |
cuda: ${{ matrix.cuda }} | |
method: network | |
use-github-cache: false | |
- name: nvcc check | |
shell: bash | |
run: | | |
nvcc -V | |
ls "$CUDA_PATH" | |
ls "$CUDA_PATH/bin" | |
ls "$CUDA_PATH/include" | |
- name: cmake version | |
shell: bash | |
run: cmake --version | |
# make sure to explicitely checkout git submodule ! | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: configure_openmp | |
run: mkdir build_openmp && cd build_openmp && cmake -DEULER_KOKKOS_BUILD_KOKKOS=ON -DEULER_KOKKOS_BACKEND=OpenMP .. | |
- name: make_openmp | |
run: cd build_openmp && make | |
- name: configure_cuda | |
run: mkdir build_cuda && cd build_cuda && cmake -DEULER_KOKKOS_BUILD_KOKKOS=ON -DEULER_KOKKOS_BACKEND=Cuda -DKokkos_ARCH_AMPERE80=ON .. | |
- name: make_cuda | |
run: cd build_cuda && make |