Skip to content
Snippets Groups Projects
Commit ad5dc781 authored by Lorenzo Pagliai's avatar Lorenzo Pagliai
Browse files

[TAG] Do not perform cache and downloads setup on tag

parent 0ab0d9fa
No related branches found
No related tags found
No related merge requests found
...@@ -211,7 +211,7 @@ retrigger: ...@@ -211,7 +211,7 @@ retrigger:
sh .gitlab-ci/scripts/build_setup.sh $GITBOT_TOKEN $CI_REPOSITORY_URL $BUILD_BRANCH $DEFCONFIG_FILE $RECIPE_NAME sh .gitlab-ci/scripts/build_setup.sh $GITBOT_TOKEN $CI_REPOSITORY_URL $BUILD_BRANCH $DEFCONFIG_FILE $RECIPE_NAME
. ./seco-setup.sh -d ${DEFCONFIG_FILE}; . ./seco-setup.sh -d ${DEFCONFIG_FILE};
. ./seco-setup.sh -c; . ./seco-setup.sh -c;
sh ../.gitlab-ci/scripts/yocto_cache_setup.sh $PROCESSOR $CUSTOM; if [ -z "$CI_COMMIT_TAG" ]; then sh ../.gitlab-ci/scripts/yocto_cache_setup.sh $PROCESSOR $CUSTOM; fi;
time bitbake ${RECIPE_NAME}; time bitbake ${RECIPE_NAME};
if [[ "$CI_JOB_NAME" != *"embedded"* ]]; then time bitbake seco-bundle-edgehog; fi; if [[ "$CI_JOB_NAME" != *"embedded"* ]]; then time bitbake seco-bundle-edgehog; fi;
. ../.gitlab-ci/scripts/check_build_artifacts.sh; . ../.gitlab-ci/scripts/check_build_artifacts.sh;
...@@ -438,4 +438,4 @@ release: ...@@ -438,4 +438,4 @@ release:
echo $command >> release.sh echo $command >> release.sh
cat release.sh cat release.sh
chmod +x release.sh chmod +x release.sh
sh release.sh sh release.sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment