Skip to content
Snippets Groups Projects
Commit 4bc6ba28 authored by Ben Boeckel's avatar Ben Boeckel Committed by Kitware Robot
Browse files

Merge topic 'gitlab-ci-scl-for-git'


072bb7fc gitlab-ci: use `$LAUNCHER` when launching `git`

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !1032
parents c849348c 072bb7fc
No related branches found
No related tags found
No related merge requests found
......@@ -87,13 +87,13 @@
# `git submodule foreach` does not consider submodules that have not been
# initialized. So here, we initialize what we can and ignore failure so
# that we can set up submodules properly later.
- "git submodule update --init --recursive || :"
- git submodule foreach --recursive cmake -P "$PWD/.gitlab/ci/fetch_submodule.cmake"
- git submodule sync --recursive
- git submodule update --init --recursive
- "$LAUNCHER git submodule update --init --recursive || :"
- $LAUNCHER git submodule foreach --recursive cmake -P "$PWD/.gitlab/ci/fetch_submodule.cmake"
- $LAUNCHER git submodule sync --recursive
- $LAUNCHER git submodule update --init --recursive
.before_script_linux_paraview: &before_script_linux_paraview
- .gitlab/ci/checkout_paraview.sh
- $LAUNCHER .gitlab/ci/checkout_paraview.sh
- export PARAVIEW_COMMIT_SHA=`$LAUNCHER git -C $CI_PROJECT_DIR/source-paraview rev-parse HEAD`
- export PARAVIEW_COMMIT_SHORT_SHA=`$LAUNCHER git -C $CI_PROJECT_DIR/source-paraview rev-parse --short HEAD`
......
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