Răsfoiți Sursa

gitlab-ci: update submodules before build

Gitlab CI will cache build directory per branch and per build step. Also it doesn't try to update submodules.
We have to do this manually because otherwise we end up with old version of submodule in cached directory.
Ivan Grokhotkov 9 ani în urmă
părinte
comite
af3f7d3ebe
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  1. 3 0
      .gitlab-ci.yml

+ 3 - 0
.gitlab-ci.yml

@@ -3,6 +3,9 @@ stages:
   - test
   - test
   - deploy
   - deploy
 
 
+before_script:
+  - git submodule update --init --recursive
+
 build_template_app:
 build_template_app:
   stage: build
   stage: build
   image: espressif/esp32-ci-env
   image: espressif/esp32-ci-env