summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndrey Listopadov <andreyorst@gmail.com>2021-10-17 13:15:50 +0300
committerAndrey Listopadov <andreyorst@gmail.com>2021-10-17 13:15:50 +0300
commitcd89b0cc23e281df2807fc0650d79b833544fc2f (patch)
tree920f9c3f7c3209c6f2523ce41edbdc127cda7f8c /.gitlab-ci.yml
parent3421b872152e99c119e1e9803d19651d574c77af (diff)
fix(CI): bump fennel in ci
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e16aeb2..96e3669 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,16 +2,15 @@
stages:
- test
- - coverage
variables:
GIT_SUBMODULE_STRATEGY: recursive
- fennel_ver: 0.9.2
+ fennel_ver: 0.10.0
fenneldoc_ver: v0.1.6
.install_fennel: &fennel |-
cd "$HOME"
- git clone -q --depth=1 --branch=0.9.2 https://git.sr.ht/~technomancy/fennel
+ git clone -q --depth=1 --branch="$fennel_ver" https://git.sr.ht/~technomancy/fennel
cd fennel || exit -1
make install
cd "$CI_PROJECT_DIR"