try to checkout submodules
This commit is contained in:
parent
2afc3dce63
commit
01eff4b863
1 changed files with 6 additions and 6 deletions
|
|
@ -35,6 +35,12 @@ Build:
|
||||||
stage: build
|
stage: build
|
||||||
when: manual
|
when: manual
|
||||||
allow_failure: false
|
allow_failure: false
|
||||||
|
# checkout our submodules
|
||||||
|
variables:
|
||||||
|
GIT_SUBMODULE_STRATEGY: recursive
|
||||||
|
before_script:
|
||||||
|
- git submodule sync
|
||||||
|
- git submodule update --init --recursive
|
||||||
parallel:
|
parallel:
|
||||||
matrix:
|
matrix:
|
||||||
- DISTRO:
|
- DISTRO:
|
||||||
|
|
@ -53,12 +59,6 @@ Build:
|
||||||
- autoscale
|
- autoscale
|
||||||
except:
|
except:
|
||||||
- merge_requests
|
- merge_requests
|
||||||
# checkout our submodules
|
|
||||||
variables:
|
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
|
||||||
before_script:
|
|
||||||
- git submodule sync
|
|
||||||
- git submodule update --init --recursive
|
|
||||||
script:
|
script:
|
||||||
- make $DISTRO
|
- make $DISTRO
|
||||||
- echo VERSION=$(cat version) >> variables.env
|
- echo VERSION=$(cat version) >> variables.env
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue