summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Listopadov <andreyorst@gmail.com>2021-04-24 15:39:05 +0300
committerAndrey Listopadov <andreyorst@gmail.com>2021-04-24 15:39:05 +0300
commita21384a408650049d825b6f79856ad2acecb81c4 (patch)
tree58ff0eb09f9a49d4fe1c2c3645b061ea02a0e63a
parenta8948ed1964033a437933db8c687d8c8e26bde44 (diff)
fix: use recursive submodules in CI
-rw-r--r--.gitlab-ci.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2fe681c..c0087db 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,9 +8,12 @@ cache:
paths:
- .cache
+variables:
+ GIT_SUBMODULE_STRATEGY: recursive
+
.install_fennel: &fennel |-
cd .cache
- [ -d fennel ] || git clone -q --depth 1 https://git.sr.ht/~technomancy/fennel
+ [ -d fennel ] || git clone -q --depth 1 https://git.sr.ht/~technomancy/fennel
cd fennel || exit -1
git checkout 0.8.1
make clean