mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: 0.1.{build}
 | 
						|
 | 
						|
image: Visual Studio 2017
 | 
						|
 | 
						|
clone_folder: c:\gopath\src\github.com\Microsoft\hcsshim
 | 
						|
 | 
						|
environment:
 | 
						|
  GOPATH: c:\gopath
 | 
						|
  PATH: "%GOPATH%\\bin;C:\\gometalinter-2.0.12-windows-amd64;%PATH%"
 | 
						|
 | 
						|
stack: go 1.13.4
 | 
						|
 | 
						|
build_script:
 | 
						|
  - appveyor DownloadFile https://github.com/alecthomas/gometalinter/releases/download/v2.0.12/gometalinter-2.0.12-windows-amd64.zip
 | 
						|
  - 7z x gometalinter-2.0.12-windows-amd64.zip -y -oC:\ > NUL
 | 
						|
  - gometalinter.exe --config .gometalinter.json ./...
 | 
						|
  - go build ./cmd/containerd-shim-runhcs-v1
 | 
						|
  - go build ./cmd/runhcs
 | 
						|
  - go build ./cmd/tar2ext4
 | 
						|
  - go build ./cmd/wclayer
 | 
						|
  - go build ./cmd/device-util
 | 
						|
  - go build ./internal/tools/grantvmgroupaccess 
 | 
						|
  - go build ./internal/tools/uvmboot
 | 
						|
  - go build ./internal/tools/zapdir
 | 
						|
  - go test -v ./... -tags admin
 | 
						|
  - cd test
 | 
						|
  - go test -v ./internal -tags admin
 | 
						|
  - go test -c ./containerd-shim-runhcs-v1/ -tags functional
 | 
						|
  - go test -c ./cri-containerd/ -tags functional
 | 
						|
  - go test -c ./functional/ -tags functional
 | 
						|
  - go test -c ./runhcs/ -tags functional
 | 
						|
 | 
						|
artifacts:
 | 
						|
  - path: 'containerd-shim-runhcs-v1.exe'
 | 
						|
  - path: 'runhcs.exe'
 | 
						|
  - path: 'tar2ext4.exe'
 | 
						|
  - path: 'device-util.exe'
 | 
						|
  - path: 'wclayer.exe'
 | 
						|
  - path: 'grantvmgroupaccess.exe'  
 | 
						|
  - path: 'uvmboot.exe'
 | 
						|
  - path: 'zapdir.exe'
 | 
						|
  - path: './test/containerd-shim-runhcs-v1.test.exe'
 | 
						|
  - path: './test/cri-containerd.test.exe'
 | 
						|
  - path: './test/functional.test.exe'
 | 
						|
  - path: './test/runhcs.test.exe'
 |