mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-31 14:02:02 +08:00
Revert "Allow for a bool to only build from local cache"
This reverts commit ce790c9da971f28fc6c135d6890fc0c9e409afe2.
This commit is contained in:
parent
ce790c9da9
commit
5b143234b5
8
.github/workflows/conan-package-create.yml
vendored
8
.github/workflows/conan-package-create.yml
vendored
@ -24,7 +24,7 @@ on:
|
||||
type: string
|
||||
|
||||
# FIXME: Once we have the new JFrog server up and running
|
||||
conan_update:
|
||||
conan_no_update:
|
||||
required: false
|
||||
type: boolean
|
||||
|
||||
@ -80,14 +80,14 @@ jobs:
|
||||
key: ${{ runner.os }}-conan
|
||||
|
||||
- name: Create the Packages
|
||||
if: ${{ inputs.conan_update != 'false' }} # FIXME: Once we have the new JFrog server up and running
|
||||
if: ${{ inputs.conan_no_update != 'true' }} # FIXME: Once we have the new JFrog server up and running
|
||||
run: conan install ${{ inputs.recipe_id_full }} -pr:b cura_build.jinja -pr:h cura_release.jinja --build=missing --update
|
||||
|
||||
# FIXME: Once we have the new JFrog server up and running
|
||||
- name: Create the Packages
|
||||
if: ${{ inputs.conan_update == 'false' }}
|
||||
if: ${{ inputs.conan_no_update == 'true' }}
|
||||
run: conan install ${{ inputs.recipe_id_full }} -pr:b cura_build.jinja -pr:h cura_release.jinja --build=missing
|
||||
|
||||
- name: Upload the Package(s)
|
||||
if: ${{ inputs.conan_update != 'false' }} # FIXME: Once we have the new JFrog server up and running
|
||||
if: ${{ inputs.conan_no_update == 'true' }} # FIXME: Once we have the new JFrog server up and running
|
||||
run: conan upload "*" -r ultimaker --all -c
|
||||
|
4
.github/workflows/conan-recipe-export.yml
vendored
4
.github/workflows/conan-recipe-export.yml
vendored
@ -28,7 +28,7 @@ on:
|
||||
type: string
|
||||
|
||||
# FIXME: Once we have the new JFrog server up and running
|
||||
conan_update:
|
||||
conan_no_update:
|
||||
required: false
|
||||
type: boolean
|
||||
|
||||
@ -81,5 +81,5 @@ jobs:
|
||||
run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }}
|
||||
|
||||
- name: Upload the Package(s)
|
||||
if: ${{ inputs.conan_update != 'false' }} # FIXME: Once we have the new JFrog server up and running
|
||||
if: ${{ inputs.conan_no_update == 'true' }} # FIXME: Once we have the new JFrog server up and running
|
||||
run: conan upload "*" -r ultimaker --all -c
|
||||
|
Loading…
x
Reference in New Issue
Block a user