24 lines
		
	
	
		
			308 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			308 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: go
 | 
						|
 | 
						|
go:
 | 
						|
  - master
 | 
						|
 | 
						|
os:
 | 
						|
  - linux
 | 
						|
 | 
						|
addons:
 | 
						|
  apt:
 | 
						|
    packages:
 | 
						|
    - qemu
 | 
						|
 | 
						|
services:
 | 
						|
  - docker
 | 
						|
 | 
						|
before_script:
 | 
						|
  - cd $GOPATH/src/github.com/jollheef/out-of-tree/tools/qemu-debian-img
 | 
						|
  - ./bootstrap.sh
 | 
						|
  - cd $GOPATH/src/github.com/jollheef/out-of-tree
 | 
						|
 | 
						|
script:
 | 
						|
  - go test -parallel 1 -v ./...
 |