Skip to content
Snippets Groups Projects
Commit c9b7407e authored by Jon Azpiazu's avatar Jon Azpiazu
Browse files

Add lfs anchor

parent ce63c287
No related branches found
No related tags found
No related merge requests found
Pipeline #56498 failed
...@@ -29,3 +29,15 @@ include : ...@@ -29,3 +29,15 @@ include :
default: default:
tags: tags:
- docker - docker
.lfs_setup_template: &lfs_setup_definition # Hidden key that defines an anchor
AFTER_SETUP_UPSTREAM_WORKSPACE: "bash <(curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh);\
apt install -qq -y git-lfs; \
git config --global credential.helper store; \
echo https://$ARTIFACT_CI_USER:$ARTIFACT_CI_TOKEN@artifact.tecnalia.com > ~/.git-credentials ;\
cd ~/upstream_ws ;\
find . -type f -name .lfsconfig -execdir git lfs pull \\; ;\
find . -type f -name .lfsconfig -execdir git lfs ls-files \\; ;\
cd ~/target_ws ;\
find . -type f -name .lfsconfig -execdir git lfs pull \\; ;\
find . -type f -name .lfsconfig -execdir git lfs ls-files \\; ;"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment