Merge branch 'dev' into dev-weh #342
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: 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 |