diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-10-17 13:15:50 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-10-17 13:15:50 +0300 |
| commit | cd89b0cc23e281df2807fc0650d79b833544fc2f (patch) | |
| tree | 920f9c3f7c3209c6f2523ce41edbdc127cda7f8c | |
| parent | 3421b872152e99c119e1e9803d19651d574c77af (diff) | |
fix(CI): bump fennel in ci
| -rw-r--r-- | .gitlab-ci.yml | 5 |
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" |