Add raft settings to make margin and remove inside corners configurablle per raft-type #81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stress Benchmark | |
on: | |
push: | |
paths: | |
- 'include/**' | |
- 'src/**' | |
- 'stress_benchmark/**' | |
- '.github/workflows/stress_benchmark.yml' | |
branches: | |
- main | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
paths: | |
- 'include/**' | |
- 'src/**' | |
- 'stress_benchmark/**' | |
- '.github/workflows/stress_benchmark.yml' | |
branches: | |
- main | |
- 'CURA-*' | |
- 'PP-*' | |
- '[0-9]+.[0-9]+' | |
permissions: | |
contents: write | |
deployments: write | |
env: | |
CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} | |
CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} | |
jobs: | |
check_actor: | |
uses: ultimaker/cura-workflows/.github/workflows/check-actor.yml@main | |
secrets: inherit | |
conan-recipe-version: | |
needs: [ check_actor ] | |
if: ${{ needs.check_actor.outputs.proceed == 'true' }} | |
uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main | |
with: | |
project_name: curaengine | |
benchmark: | |
needs: [ conan-recipe-version ] | |
uses: ultimaker/cura-workflows/.github/workflows/benchmark.yml@main | |
with: | |
recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} | |
conan_extra_args: "-o curaengine:enable_benchmarks=True" | |
benchmark_cmd: "stress_benchmark/stress_benchmark -o benchmark_result.json" | |
name: "Stress Benchmark" | |
output_file_path: "build/Release/benchmark_result.json" | |
data_dir: "dev/stress_bench" | |
tool: "customSmallerIsBetter" | |
secrets: inherit |