Move forward diff routine out, scaling calcs, basic tests, simple cli… #64
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
--- | |
# CI build for DPTLib | |
# | |
name: DPTLib | |
on: [push] | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
matrix: | |
config: | |
- { name: "Ubuntu build", os: "ubuntu-latest", install: "sudo apt-get install cmake ninja-build" } | |
- { name: "Windows build", os: "windows-latest", install: "choco install cmake ninja" } | |
- { name: "macOS build", os: "macos-latest", install: "brew install cmake ninja" } | |
steps: | |
- uses: actions/checkout@v2 | |
- run: ${{ matrix.config.install }} | |
- run: | | |
mkdir build | |
cd build | |
cmake -GNinja .. | |
cmake --build . |