Skip to content

Merge remote-tracking branch 'origin/CURA-12250_refactor-the-post-pro… #3766

Merge remote-tracking branch 'origin/CURA-12250_refactor-the-post-pro…

Merge remote-tracking branch 'origin/CURA-12250_refactor-the-post-pro… #3766

Workflow file for this run

---
name: unit-test
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
env:
CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }}
CONAN_PASSWORD: ${{ secrets.CONAN_PASS }}
jobs:
conan-recipe-version:
uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main
with:
project_name: curaengine

Check failure on line 47 in .github/workflows/unit-test.yml

View workflow run for this annotation

GitHub Actions / unit-test

Invalid workflow file

The workflow is not valid. .github/workflows/unit-test.yml (Line: 47, Col: 21): Invalid input, project_name is not defined in the referenced workflow.
testing:
uses: ultimaker/cura-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: '-c tools.build:skip_test=False'
unit_test_cmd: 'ctest --output-junit engine_test.xml'
unit_test_dir: 'build/Release'
build: true
secrets: inherit