BLD,MAINT: Fix C++14 builds #49
Workflow file for this run
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: "Build d-SEAMS yodaLib" | |
on: [push, pull_request] | |
jobs: | |
build_lib: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
generate-run-shell: true | |
environment-file: environment.yml | |
cache-environment: true | |
cache-downloads: false | |
- name: Build library with meson | |
shell: micromamba-shell {0} | |
run: | | |
mkdir bbdir | |
meson setup bbdir | |
meson compile -C bbdir |