Skip to content

CURA-13049 process the end variable replacement in the engine #5051

CURA-13049 process the end variable replacement in the engine

CURA-13049 process the end variable replacement in the engine #5051

Workflow file for this run

name: Unit tests - run
on:
push:
paths:
- 'include/**'
- 'src/**'
- 'tests/**'
- 'conanfile.py'
- 'conandata.yml'
- 'CMakeLists.txt'
- '.github/workflows/unit-test.yml'
- '.github/workflows/unit-test-post.yml'
branches:
- main
- 'CURA-*'
- 'PP-*'
- 'NP-*'
- '[0-9]+.[0-9]+'
pull_request:
types: [ opened, reopened, synchronize ]
paths:
- 'include/**'
- 'src/**'
- 'tests/**'
- 'conanfile.py'
- 'conandata.yml'
- 'CMakeLists.txt'
- '.github/workflows/unit-test.yml'
- '.github/workflows/unit-test-post.yml'
branches:
- main
- '[0-9]+.[0-9]+'
permissions:
contents: read
jobs:
check_actor:
uses: ultimaker/cura-workflows/.github/workflows/check-actor.yml@main
secrets: inherit
find-ticket-packages:
name: Extract ticket and find packages
uses: ultimaker/cura-workflows/.github/workflows/extract-ticket-and-find-packages.yml@main
secrets: inherit
testing:
name: Run unit tests
needs: [check_actor, find-ticket-packages]
if: >-
always() &&
needs.check_actor.outputs.proceed == 'true' &&
needs.find-ticket-packages.result == 'success'
uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@main
with:
test_use_ctest: true
package_overrides: ${{ needs.find-ticket-packages.outputs.package_overrides || '' }}
secrets: inherit