mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	Appveyor: Enable functional tests
Most functional tests don't work on Windows yet, for now enable a subset of the tests in Appveyor builds.
This commit is contained in:
		
				
					committed by
					
						
						Rui Abreu Ferreira
					
				
			
			
				
	
			
			
			
						parent
						
							703cf3197f
						
					
				
				
					commit
					0089ef6b65
				
			@@ -28,13 +28,14 @@ cd ..
 | 
				
			|||||||
:: Build Neovim
 | 
					:: Build Neovim
 | 
				
			||||||
mkdir build
 | 
					mkdir build
 | 
				
			||||||
cd build
 | 
					cd build
 | 
				
			||||||
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release .. || goto :error
 | 
					cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUSTED_OUTPUT_TYPE=gtest .. || goto :error
 | 
				
			||||||
mingw32-make VERBOSE=1 || goto :error
 | 
					mingw32-make VERBOSE=1 || goto :error
 | 
				
			||||||
bin\nvim --version || goto :error
 | 
					bin\nvim --version || goto :error
 | 
				
			||||||
cd ..
 | 
					
 | 
				
			||||||
 | 
					:: Functional tests
 | 
				
			||||||
 | 
					mingw32-make functionaltest VERBOSE=1 || goto :error
 | 
				
			||||||
 | 
					
 | 
				
			||||||
:: Build artifacts
 | 
					:: Build artifacts
 | 
				
			||||||
cd build
 | 
					 | 
				
			||||||
cpack -G ZIP -C Release
 | 
					cpack -G ZIP -C Release
 | 
				
			||||||
if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C Release
 | 
					if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C Release
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user