Skip to content

Fixed another CMake issue #5

Fixed another CMake issue

Fixed another CMake issue #5

Workflow file for this run

---
name: unit-test
on:
push:
paths:
- 'src/**'
- 'include/**'
- 'tests'
- 'test_package/**'
- 'tests/**'
- 'cmake/**'
- 'conanfile.py'
- 'conandata.yml'
- 'CMakeLists.txt'
- 'requirements.txt'
- '.github/workflows/unit-test.yml'
- '.github/workflows/requirements*'
branches:
- main
- master
- 'CURA-*'
- '[0-9].[0-9]'
- '[0-9].[0-9][0-9]'
tags:
- '[0-9].[0-9].[0-9]'
- '[0-9].[0-9][0-9].[0-9]'
pull_request:
paths:
- 'src/**'
- 'include/**'
- 'tests'
- 'test_package/**'
- 'tests/**'
- 'cmake/**'
- 'conanfile.py'
- 'conandata.yml'
- 'CMakeLists.txt'
- 'requirements.txt'
- '.github/workflows/unit-test.yml'
- '.github/workflows/requirements*'
branches:
- main
- master
- '[0-9].[0-9]'
- '[0-9].[0-9][0-9]'
jobs:
conan-recipe-version:
uses: lulzbot3d/cura-le-workflows/.github/workflows/conan-recipe-version.yml@main
with:
project_name: nest2dle
unit-test:
uses: lulzbot3d/cura-le-workflows/.github/workflows/unit-test.yml@main
needs: [ conan-recipe-version ]
with:
recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }}
conan_extra_args: "-o nest2dle:enable_testing=True"
unit_test_cmd: "ctest --output-junit engine_test.xml"
unit_test_dir: "build/Release/"
build: true
secrets: inherit