mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 00:45:55 +08:00
Merge branch 'main' into CURA-11138-makerbot-cloud-printing
This commit is contained in:
commit
a247e81bb3
13
.github/workflows/linux.yml
vendored
13
.github/workflows/linux.yml
vendored
@ -106,16 +106,8 @@ jobs:
|
|||||||
$HOME/.conan/conan_download_cache
|
$HOME/.conan/conan_download_cache
|
||||||
key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache
|
key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache
|
||||||
|
|
||||||
- name: Hack needed specifically for ubuntu-22.04 from mid-Feb 2023 onwards
|
|
||||||
if: ${{ startsWith(inputs.operating_system, 'ubuntu-22.04') }}
|
|
||||||
run: sudo apt remove libodbc2 libodbcinst2 unixodbc-common -y
|
|
||||||
|
|
||||||
# NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest.
|
|
||||||
# This is maybe because grub caches the disk it uses last time, which is recreated each time.
|
|
||||||
- name: Install Linux system requirements
|
- name: Install Linux system requirements
|
||||||
run: |
|
run: |
|
||||||
sudo rm /var/cache/debconf/config.dat
|
|
||||||
sudo dpkg --configure -a
|
|
||||||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt upgrade
|
sudo apt upgrade
|
||||||
@ -157,6 +149,11 @@ jobs:
|
|||||||
- name: Create the Packages (Bash)
|
- name: Create the Packages (Bash)
|
||||||
run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json"
|
run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json"
|
||||||
|
|
||||||
|
- name: Remove internal packages before uploading
|
||||||
|
run: |
|
||||||
|
conan remove "*@internal/*" -f || true
|
||||||
|
conan remove "cura_private_data*" -f || true
|
||||||
|
|
||||||
- name: Upload the Package(s)
|
- name: Upload the Package(s)
|
||||||
if: always()
|
if: always()
|
||||||
run: |
|
run: |
|
||||||
|
6
.github/workflows/macos.yml
vendored
6
.github/workflows/macos.yml
vendored
@ -158,8 +158,12 @@ jobs:
|
|||||||
- name: Create the Packages (Bash)
|
- name: Create the Packages (Bash)
|
||||||
run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json"
|
run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json"
|
||||||
|
|
||||||
|
- name: Remove internal packages before uploading
|
||||||
|
run: |
|
||||||
|
conan remove "*@internal/*" -f || true
|
||||||
|
conan remove "cura_private_data*" -f || true
|
||||||
|
|
||||||
- name: Upload the Package(s)
|
- name: Upload the Package(s)
|
||||||
if: ${{ inputs.operating_system != 'self-hosted' }}
|
|
||||||
run: |
|
run: |
|
||||||
conan upload "*" -r cura --all -c
|
conan upload "*" -r cura --all -c
|
||||||
|
|
||||||
|
5
.github/workflows/windows.yml
vendored
5
.github/workflows/windows.yml
vendored
@ -124,6 +124,11 @@ jobs:
|
|||||||
- name: Create the Packages (Powershell)
|
- name: Create the Packages (Powershell)
|
||||||
run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING --json "cura_inst/conan_install_info.json"
|
run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING --json "cura_inst/conan_install_info.json"
|
||||||
|
|
||||||
|
- name: Remove internal packages before uploading
|
||||||
|
run: |
|
||||||
|
conan remove "*@internal/*" -f || true
|
||||||
|
conan remove "cura_private_data*" -f || true
|
||||||
|
|
||||||
- name: Upload the Package(s)
|
- name: Upload the Package(s)
|
||||||
if: always()
|
if: always()
|
||||||
run: |
|
run: |
|
||||||
|
@ -316,7 +316,7 @@ class CuraConan(ConanFile):
|
|||||||
self.requires("cura_binary_data/(latest)@ultimaker/testing")
|
self.requires("cura_binary_data/(latest)@ultimaker/testing")
|
||||||
self.requires("cpython/3.10.4")
|
self.requires("cpython/3.10.4")
|
||||||
if self.options.internal:
|
if self.options.internal:
|
||||||
self.requires("cura_private_data/(latest)@ultimaker/testing")
|
self.requires("cura_private_data/(latest)@internal/testing")
|
||||||
self.requires("fdm_materials/(latest)@internal/testing")
|
self.requires("fdm_materials/(latest)@internal/testing")
|
||||||
else:
|
else:
|
||||||
self.requires("fdm_materials/(latest)@ultimaker/testing")
|
self.requires("fdm_materials/(latest)@ultimaker/testing")
|
||||||
|
@ -5130,7 +5130,7 @@
|
|||||||
"support_z_distance":
|
"support_z_distance":
|
||||||
{
|
{
|
||||||
"label": "Support Z Distance",
|
"label": "Support Z Distance",
|
||||||
"description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height.",
|
"description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers.",
|
||||||
"unit": "mm",
|
"unit": "mm",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
@ -5158,7 +5158,7 @@
|
|||||||
"support_bottom_distance":
|
"support_bottom_distance":
|
||||||
{
|
{
|
||||||
"label": "Support Bottom Distance",
|
"label": "Support Bottom Distance",
|
||||||
"description": "Distance from the print to the bottom of the support.",
|
"description": "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height.",
|
||||||
"unit": "mm",
|
"unit": "mm",
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
"maximum_value_warning": "machine_nozzle_size",
|
"maximum_value_warning": "machine_nozzle_size",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user