Skip to content

'tasker' library in a module is used instead of 'mt' and 'scheduler' #322

'tasker' library in a module is used instead of 'mt' and 'scheduler'

'tasker' library in a module is used instead of 'mt' and 'scheduler' #322

Workflow file for this run

name: Build / Test
on:
push:
branches: [ '**', '!pre.*' ]
pull_request:
branches: [ master ]
env:
BUILD_TYPE: Release
jobs:
build:
permissions: write-all
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- os: ubuntu-20.04
- os: windows-latest
- os: macos-13
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Select Python 3.10 # otherwise turtlebrowser/get-conan@v1.1 fails on macos-12
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Conan
id: conan
uses: turtlebrowser/get-conan@main
with:
version: 1.59.0
- name: Configure CMake
run: cmake -B ${{github.workspace}}/_build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/_build --config ${{env.BUILD_TYPE}} --parallel 4
- name: Test
working-directory: ${{github.workspace}}/_build
run: ctest -C ${{env.BUILD_TYPE}} -VV