diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..0b47b35 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,32 @@ +stages: + - test + +before_script: + - apk update; apk add git bash make + +test-latest: + stage: test + image: + name: thinca/vim:latest-full + entrypoint: [""] + environment: + MYVIM: vim -T dumb --not-a-term -n + script: cd ./test/new && make -j1 && make -j1 coverage + +test-8.0.1575: + stage: test + image: + name: thinca/vim:v8.0.1575-full + entrypoint: [""] + environment: + MYVIM: vim -T dumb --not-a-term -n + script: cd ./test/new && make -j1 && make -j1 coverage + +test-7.4.2273: + stage: test + image: + name: thinca/vim:v7.4.2273-full + entrypoint: [""] + environment: + MYVIM: vim -T dumb --not-a-term -n + script: cd ./test/new && make -j1 && make -j1 coverage diff --git a/README.md b/README.md index ee25ee6..f72ae22 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@
-
+