Skip to content
Snippets Groups Projects
Commit 1472aab5 authored by Steffen Müthing's avatar Steffen Müthing
Browse files

Removing workaround for git submodules

The upstream bug is fixed, the workaround is not necessary anymore.
parent 0b15b038
No related branches found
No related tags found
No related merge requests found
---
variables:
# work around https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/2148
# value should be "recursive" without workaround
GIT_SUBMODULE_STRATEGY: none
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- echo "Running make concurrently with $(nproc) cores, where possibly"
# make sure we can update submodules and apply the patches
- git submodule foreach --recursive git reset --hard HEAD
- git submodule foreach --recursive git clean -fdx
# work around https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/2148
- git submodule sync --recursive
- git submodule update --init --recursive
# end workaround
- patches/apply_patches.sh
# detect number of processors, but make sure never to run with -j"", as the
# build host would likely run out of memory
......
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