mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Merge branch 'Ultimaker:main' into voron-nozzles
This commit is contained in:
commit
fe23f07ca7
3 changed files with 74 additions and 53 deletions
|
@ -5,6 +5,9 @@ on:
|
||||||
path:
|
path:
|
||||||
- "resources/**"
|
- "resources/**"
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
printer-linter-diagnose:
|
printer-linter-diagnose:
|
||||||
name: Printer linter PR diagnose
|
name: Printer linter PR diagnose
|
||||||
|
@ -50,7 +53,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo ${{ github.event.number }} > printer-linter-result/pr-id.txt
|
echo ${{ github.event.number }} > printer-linter-result/pr-id.txt
|
||||||
echo ${{ github.event.pull_request.head.repo.full_name }} > printer-linter-result/pr-head-repo.txt
|
echo ${{ github.event.pull_request.head.repo.full_name }} > printer-linter-result/pr-head-repo.txt
|
||||||
echo ${{ github.event.pull_request.head.ref }} > printer-linter-result/pr-head-ref.txt
|
echo ${{ github.event.pull_request.head.sha }} > printer-linter-result/pr-head-sha.txt
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
120
.github/workflows/printer-linter-pr-post.yml
vendored
120
.github/workflows/printer-linter-pr-post.yml
vendored
|
@ -6,88 +6,106 @@ on:
|
||||||
types: [completed]
|
types: [completed]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
clang-tidy-results:
|
printer-linter-result:
|
||||||
# Trigger the job only if the previous (insecure) workflow completed successfully
|
# Trigger the job only if the previous (insecure) workflow completed successfully
|
||||||
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }}
|
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download analysis results
|
- name: Download analysis results
|
||||||
uses: actions/github-script@v3.1.0
|
uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
let artifacts = await github.actions.listWorkflowRunArtifacts({
|
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
|
||||||
owner: context.repo.owner,
|
owner: context.repo.owner,
|
||||||
repo: context.repo.repo,
|
repo: context.repo.repo,
|
||||||
run_id: ${{github.event.workflow_run.id }},
|
run_id: ${{github.event.workflow_run.id }},
|
||||||
});
|
});
|
||||||
let matchArtifact = artifacts.data.artifacts.filter((artifact) => {
|
const matchArtifact = artifacts.data.artifacts.filter((artifact) => {
|
||||||
return artifact.name == "printer-linter-result"
|
return artifact.name == "printer-linter-result"
|
||||||
})[0];
|
})[0];
|
||||||
let download = await github.actions.downloadArtifact({
|
const download = await github.rest.actions.downloadArtifact({
|
||||||
owner: context.repo.owner,
|
owner: context.repo.owner,
|
||||||
repo: context.repo.repo,
|
repo: context.repo.repo,
|
||||||
artifact_id: matchArtifact.id,
|
artifact_id: matchArtifact.id,
|
||||||
archive_format: "zip",
|
archive_format: "zip",
|
||||||
});
|
});
|
||||||
let fs = require("fs");
|
const fs = require("fs");
|
||||||
fs.writeFileSync("${{github.workspace}}/printer-linter-result.zip", Buffer.from(download.data));
|
fs.writeFileSync("${{ github.workspace }}/printer-linter-result.zip", Buffer.from(download.data));
|
||||||
|
|
||||||
- name: Set environment variables
|
|
||||||
run: |
|
|
||||||
mkdir printer-linter-result
|
|
||||||
unzip printer-linter-result.zip -d printer-linter-result
|
|
||||||
echo "pr_id=$(cat printer-linter-result/pr-id.txt)" >> $GITHUB_ENV
|
|
||||||
echo "pr_head_repo=$(cat printer-linter-result/pr-head-repo.txt)" >> $GITHUB_ENV
|
|
||||||
echo "pr_head_ref=$(cat printer-linter-result/pr-head-ref.txt)" >> $GITHUB_ENV
|
|
||||||
if [[ -f "printer-linter-result/comment.md" ]]; then
|
|
||||||
echo "commentFileExists=true" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "commentFileExists=false" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: ${{ env.pr_head_repo }}
|
|
||||||
ref: ${{ env.pr_head_ref }}
|
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Redownload analysis results
|
|
||||||
uses: actions/github-script@v3.1.0
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
let artifacts = await github.actions.listWorkflowRunArtifacts({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
run_id: ${{github.event.workflow_run.id }},
|
|
||||||
});
|
|
||||||
let matchArtifact = artifacts.data.artifacts.filter((artifact) => {
|
|
||||||
return artifact.name == "printer-linter-result"
|
|
||||||
})[0];
|
|
||||||
let download = await github.actions.downloadArtifact({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
artifact_id: matchArtifact.id,
|
|
||||||
archive_format: "zip",
|
|
||||||
});
|
|
||||||
let fs = require("fs");
|
|
||||||
fs.writeFileSync("${{github.workspace}}/printer-linter-result.zip", Buffer.from(download.data));
|
|
||||||
|
|
||||||
- name: Extract analysis results
|
- name: Extract analysis results
|
||||||
run: |
|
run: |
|
||||||
mkdir printer-linter-result
|
mkdir printer-linter-result
|
||||||
unzip printer-linter-result.zip -d printer-linter-result
|
unzip -j printer-linter-result.zip -d printer-linter-result
|
||||||
|
|
||||||
|
- name: Set PR details environment variables
|
||||||
|
uses: actions/github-script@v7
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const assert = require("node:assert").strict;
|
||||||
|
const fs = require("fs");
|
||||||
|
function exportVar(varName, fileName, regEx) {
|
||||||
|
const val = fs.readFileSync("${{ github.workspace }}/printer-linter-result/" + fileName, {
|
||||||
|
encoding: "ascii"
|
||||||
|
}).trimEnd();
|
||||||
|
assert.ok(regEx.test(val), "Invalid value format for " + varName);
|
||||||
|
core.exportVariable(varName, val);
|
||||||
|
}
|
||||||
|
exportVar("PR_ID", "pr-id.txt", /^[0-9]+$/);
|
||||||
|
exportVar("PR_HEAD_REPO", "pr-head-repo.txt", /^[-./0-9A-Z_a-z]+$/);
|
||||||
|
exportVar("PR_HEAD_SHA", "pr-head-sha.txt", /^[0-9A-Fa-f]+$/);
|
||||||
|
fs.access("${{ github.workspace }}/printer-linter-result/comment.md", fs.constants.F_OK, (err) => {
|
||||||
|
if (err) {
|
||||||
|
core.exportVariable("commentFileExists", "false");
|
||||||
|
} else {
|
||||||
|
core.exportVariable("commentFileExists", "true");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
repository: ${{ env.PR_HEAD_REPO }}
|
||||||
|
ref: ${{ env.PR_HEAD_SHA }}
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- name: Redownload analysis results
|
||||||
|
uses: actions/github-script@v7
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
run_id: ${{github.event.workflow_run.id }},
|
||||||
|
});
|
||||||
|
const matchArtifact = artifacts.data.artifacts.filter((artifact) => {
|
||||||
|
return artifact.name == "printer-linter-result"
|
||||||
|
})[0];
|
||||||
|
const download = await github.rest.actions.downloadArtifact({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
artifact_id: matchArtifact.id,
|
||||||
|
archive_format: "zip",
|
||||||
|
});
|
||||||
|
const fs = require("fs");
|
||||||
|
fs.writeFileSync("${{ github.workspace }}/printer-linter-result.zip", Buffer.from(download.data));
|
||||||
|
|
||||||
|
- name: Extract analysis results
|
||||||
|
run: |
|
||||||
|
mkdir printer-linter-result
|
||||||
|
unzip -j printer-linter-result.zip -d printer-linter-result
|
||||||
|
|
||||||
- name: Run PR Comments
|
- name: Run PR Comments
|
||||||
if: env.commentFileExists == 'true'
|
if: env.commentFileExists == 'true'
|
||||||
uses: peter-evans/create-or-update-comment@v4
|
uses: peter-evans/create-or-update-comment@v4
|
||||||
with:
|
with:
|
||||||
issue-number: ${{ env.pr_id }}
|
issue-number: ${{ env.PR_ID }}
|
||||||
body-path: 'printer-linter-result/comment.md'
|
body-path: 'printer-linter-result/comment.md'
|
||||||
|
|
||||||
- name: Run clang-tidy-pr-comments action
|
- name: Run clang-tidy-pr-comments action
|
||||||
uses: platisd/clang-tidy-pr-comments@bc0bb7da034a8317d54e7fe1e819159002f4cc40
|
uses: platisd/clang-tidy-pr-comments@v1
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
clang_tidy_fixes: printer-linter-result/fixes.yml
|
clang_tidy_fixes: printer-linter-result/fixes.yml
|
||||||
pull_request_id: ${{ env.pr_id }}
|
pull_request_id: ${{ env.PR_ID }}
|
||||||
request_changes: true
|
request_changes: true
|
||||||
|
|
|
@ -6845,7 +6845,7 @@
|
||||||
"label": "Prime Tower Type",
|
"label": "Prime Tower Type",
|
||||||
"description": "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>",
|
"description": "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>",
|
||||||
"type": "enum",
|
"type": "enum",
|
||||||
"value": "'interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal'",
|
"resolve": "'interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal'",
|
||||||
"options":
|
"options":
|
||||||
{
|
{
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue