diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-04-24 16:10:22 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-04-24 16:10:22 +0300 |
| commit | 7d54e08f4c02518aa23b91f3b65b9708330ebdd7 (patch) | |
| tree | 781b41ff216506506f8c6483d028ffb5b3649e33 /.gitlab-ci.yml | |
| parent | a21384a408650049d825b6f79856ad2acecb81c4 (diff) | |
fix: bump fennel version in tests
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c0087db..cf24056 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,17 +13,19 @@ variables: .install_fennel: &fennel |- cd .cache - [ -d fennel ] || git clone -q --depth 1 https://git.sr.ht/~technomancy/fennel + [ -d fennel ] || git clone -q https://git.sr.ht/~technomancy/fennel cd fennel || exit -1 - git checkout 0.8.1 + git pull + git checkout 0.9.1 make clean make install cd "$CI_PROJECT_DIR" .install_fenneldoc: &fenneldoc |- cd .cache - [ -d fenneldoc ] || git clone -q --depth 1 https://gitlab.com/andreyorst/fenneldoc + [ -d fenneldoc ] || git clone -q https://gitlab.com/andreyorst/fenneldoc cd fenneldoc || exit -1 + git pull git checkout -q --recurse-submodules v0.1.0 make clean make install |