fixed link flags after OS update, changed DiMES head to be slice of s… #224
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: machine | |
on: [ push, workflow_dispatch ] | |
jobs: | |
job_one: | |
strategy: | |
matrix: | |
os_env: | |
- macos-latest | |
- ubuntu-latest | |
build_type: | |
- Debug | |
scenario: | |
- egyro | |
runs-on: ${{ matrix.os_env }} | |
steps: | |
- name: retrieve project | |
uses: actions/checkout@v2 | |
# - name: grab cmfkit | |
# uses: actions/checkout@v2 | |
# with: | |
# repository: ornl-fusion/cmfkit | |
# path: ./.cmfkit_base | |
- name: launch build & test | |
env: | |
CMFKIT_PLATFORM: github-vm-${{ matrix.os_env }} | |
CMFKIT_SCENARIO: ${{ matrix.scenario }} | |
CMAKE_BUILD_TYPE: ${{ matrix.build_type }} | |
run: | | |
./.cmfkit_base/launch build | |
./.cmfkit_base/launch test | |