Merge pull request #77 from KIwabuchi/feature/dnnd_new_api #23
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: CI Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install OpenMPI | |
run: sudo apt-get install openmpi-bin libopenmpi-dev | |
- name: Build w/o HDF5 w/ Metall | |
run: | | |
mkdir build && cd build | |
cmake ../ -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_CXX_COMPILER=g++-12 -DSALTATLAS_USE_HDF5=OFF -DSALTATLAS_USE_METALL=ON | |
make -j |