Skip to content
Snippets Groups Projects
Commit b60e4c1d authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

chore : download setup script now is executed only once

parent e6b02e87
No related branches found
No related tags found
1 merge request!8multiple fixes
......@@ -7,10 +7,14 @@ include:
###################################################################################################
.ubuntu:download:setup:
script:
- GITLAB_ECLIPSE_URL="https://gitlab.eclipse.org"
- API_URL="$GITLAB_ECLIPSE_URL/api/v4"
- apt-get update -qq
- apt-get install -y -qq git unzip curl jq
- >
if [[ ! $setup_completed ]] ; then
GITLAB_ECLIPSE_URL="https://gitlab.eclipse.org"
API_URL="$GITLAB_ECLIPSE_URL/api/v4"
apt-get update -qq
apt-get install -y -qq git unzip curl jq
setup_completed=true
fi
.ubuntu:download:artifacts:
# This script will retrieve the artifacts of latests successful specified job in every dependency.
......
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