Updated some compatibility issues #108
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| preflight: | |
| name: Validate pre-flight checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential gfortran cmake git python3 \ | |
| libgsl-dev libopenblas-dev libopenmpi-dev | |
| - name: CMake configure (pre-flight validation) | |
| run: | | |
| mkdir build && cd build | |
| cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/.local/share/DiFfRG -DGPU=OFF |