File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
- sudo : false
1
+ language : c
2
+ sudo : false
3
+
4
+ install :
5
+ - git clone --depth 1 https://github.com/vim/vim.git $HOME/vim
6
+ - (cd $HOME/vim/src && ./configure --enable-gui=no && make -j 4 vim)
7
+ - $HOME/vim/src/vim --version
2
8
3
9
script :
4
- - make test
10
+ - make test VIM=$HOME/vim/src/vim
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ CHECKFILES = ja.ck \
10
10
11
11
MSGFMT = OLD_PO_FILE_INPUT=yes msgfmt
12
12
13
+ VIM = vim
14
+
13
15
.SUFFIXES : .po .mo .ck
14
16
15
17
test : check $(MOFILES )
@@ -57,7 +59,7 @@ clean: checkclean
57
59
$(MSGFMT ) --check -v -o $@ $<
58
60
59
61
.po.ck :
60
- vim -u NONE --noplugins -e -s -X --cmd " set enc=utf-8" -S check.vim \
62
+ $( VIM ) -u NONE --noplugins -e -s -X --cmd " set enc=utf-8" -S check.vim \
61
63
-c " if error == 0 | q | else | num 2 | cq | endif" $<
62
64
touch $@
63
65
You can’t perform that action at this time.
0 commit comments