Revert "Allow for a bool to only build from local cache"

This reverts commit ce790c9da971f28fc6c135d6890fc0c9e409afe2.
This commit is contained in:
Jelle Spijker 2022-06-16 06:23:05 +02:00
parent ce790c9da9
commit 5b143234b5
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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