Skip to content

New thread modes up and running (configurable in Performance panel). #157

New thread modes up and running (configurable in Performance panel).

New thread modes up and running (configurable in Performance panel). #157

Workflow file for this run

name: CMake
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Configure CMake
working-directory: ./Emulator
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
working-directory: ./Emulator
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ./Emulator
run: ctest -C ${{env.BUILD_TYPE}}