Skip to content

Commit

Permalink
Merge branch 'main' into CURA-10829_dont_expose_small_skin_to_air
Browse files Browse the repository at this point in the history
  • Loading branch information
jellespijker authored Aug 10, 2023
2 parents a3e122c + 114eef3 commit 921af0e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/gcodeanalyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,18 @@ jobs:
run: |
cd CuraEngine
branch_name=$(git rev-parse --abbrev-ref HEAD)
exists=$(curl -s -o /dev/null -w "%{http_code}" https://api.github.com/repos/ultimaker/cura/branches/${branch_name})
exists=$(curl -s -o /dev/null -w "%{http_code}" "https://api.github.com/repos/ultimaker/cura/branches/${branch_name}")
cd ..
mkdir Cura
cd Cura
git init
git sparse-checkout set resources/definitions resources/extruders
git remote add -f origin https://github.com/Ultimaker/Cura
if [ "$exists" == "200" ]; then
echo "Using '${branch_name}' for Cura" >> $GITHUB_STEP_SUMMARY
git pull origin ${branch_name}
else
echo "Using 'main' for Cura" >> $GITHUB_STEP_SUMMARY
git pull origin main
fi
cd ..
Expand Down

1 comment on commit 921af0e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'C++ Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.75.

Benchmark suite Current: 921af0e Previous: a3e122c Ratio
InfillTest/Infill_generate_connect/0/400 8.153407346534806 ms/iter 4.35715629691881 ms/iter 1.87

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.