24 lines
		
	
	
		
			737 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			737 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM testbed/vim:17
 | |
| 
 | |
| # add packages
 | |
| RUN apk --no-cache add bash=~5.0
 | |
| RUN apk --no-cache add git=~2.22
 | |
| RUN apk --no-cache add python3=~3.7
 | |
| 
 | |
| # get vint for linting
 | |
| RUN pip3 install vim-vint==0.3.21
 | |
| 
 | |
| # get vader for unit tests
 | |
| RUN git clone -n https://github.com/junegunn/vader.vim /vader
 | |
| WORKDIR /vader
 | |
| RUN git checkout de8a976f1eae2c2b680604205c3e8b5c8882493c
 | |
| 
 | |
| # build vim and neovim versions we want to test
 | |
| # TODO uncomment nvim tag
 | |
| WORKDIR /
 | |
| RUN install_vim -tag v7.3.429 -name vim_7.3.429 -build \
 | |
|                 -tag v7.4.1099 -name vim_7.4.1099 -build \
 | |
|                 -tag v7.4.1546 -name vim_7.4.1546 -build \
 | |
|                 -tag v8.0.0027 -name vim_8.0.0027 -build \
 | |
|                 -tag v8.1.0519 -name vim_8.1.0519 -build \
 |