Skip to content

Merge pull request #61 from sandialabs/solver_api #207

Merge pull request #61 from sandialabs/solver_api

Merge pull request #61 from sandialabs/solver_api #207

Workflow file for this run

name: Linux Build and Tests
on:
workflow_dispatch:
push:
branches: [ main, dev, dev-weh, public, private ]
pull_request:
branches: [ main, dev, dev-weh, public, private ]
jobs:
coek-simple-build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: run cmake
run: |
mkdir build
cd build
cmake -Dinstall_all_tpls=OFF -Dwith_python=OFF ..
- name: build
run: |
cd build
make
coek-build-and-test-with-tpls:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: run cmake
run: |
mkdir build
cd build
cmake -Dwith_python=OFF -Dwith_tests=ON -Dwith_debug=ON ..
- name: build
run: |
cd build
make install_tpls
make
- name: test
run: |
cd build
make test
# coek-build-and-test-with-cpp14:
# runs-on: ubuntu-latest
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v3
# - name: run cmake
# run: |
# mkdir build
# cd build
# cmake -DCMAKE_CXX_STANDARD=14 -Dwith_python=OFF -Dwith_tests=ON -Dwith_debug=ON ..
# - name: build
# run: |
# cd build
# make install_tpls
# make
# - name: test
# run: |
# cd build
# make test