Skip to content
Snippets Groups Projects
Commit 5d98dccd authored by Filippo Cremonese's avatar Filippo Cremonese
Browse files

Try to ensure remote url is set but ignore errors

parent 5ac531a7
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,13 @@ create-binaries:
script:
- git checkout -B "$CI_COMMIT_REF_NAME" "$CI_COMMIT_SHA"
- .orchestra/ci/install-dependencies.sh
- git remote add internal https://gitlab-ci-token:${CI_JOB_TOKEN}@rev.ng/gitlab/revng-internal/orchestra-v3.git || true
- git remote add private https://gitlab-ci-token:${CI_JOB_TOKEN}@rev.ng/gitlab/revng-private/orchestra-v3.git || true
- |
git remote add internal https://gitlab-ci-token:${CI_JOB_TOKEN}@rev.ng/gitlab/revng-internal/orchestra-v3.git || \
git remote set-url internal https://gitlab-ci-token:${CI_JOB_TOKEN}@rev.ng/gitlab/revng-internal/orchestra-v3.git || \
true
- |
git remote add private https://gitlab-ci-token:${CI_JOB_TOKEN}@rev.ng/gitlab/revng-private/orchestra-v3.git || \
git remote set-url private https://gitlab-ci-token:${CI_JOB_TOKEN}@rev.ng/gitlab/revng-private/orchestra-v3.git || \
true
- ./orchestra.py components
- ./orchestra.py -b install --create-binary-archives ui/cold-revng
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