Skip to content

Merge pull request #91 from sandialabs/dev-weh #335

Merge pull request #91 from sandialabs/dev-weh

Merge pull request #91 from sandialabs/dev-weh #335

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 ..
- 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: build tpls with Spack and then Coek
run: |
./build.sh
- name: test
run: |
cd _build
make test