All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			This is initial support limited to running apps only and only for get handler.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			667 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			667 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: test
 | 
						|
test:
 | 
						|
	go test -v apps/*.go
 | 
						|
	go test -v apps/drivers/*.go
 | 
						|
 | 
						|
build:
 | 
						|
	#podman run --rm --privileged -ti -v ${shell pwd}:/srv docker.io/library/golang:1.14-stretch /bin/sh -c "cd /srv && go build"
 | 
						|
	go build -a -ldflags "-linkmode external -extldflags '-static' -s -w"
 | 
						|
 | 
						|
.PHONY: minio
 | 
						|
minio:
 | 
						|
	mkdir -p ./tmp/snapshots
 | 
						|
	-podman stop rosti-snapshots
 | 
						|
	-podman rm rosti-snapshots
 | 
						|
	podman run  -d --name rosti-snapshots \
 | 
						|
		-u 1000 \
 | 
						|
		-p 9000:9000 \
 | 
						|
		-p 9001:9001 \
 | 
						|
		-e MINIO_ROOT_USER=test \
 | 
						|
		-e MINIO_ROOT_PASSWORD=testtest \
 | 
						|
		minio/minio server /data --console-address ":9001"
 | 
						|
 | 
						|
.PHONY: clean
 | 
						|
clean:
 | 
						|
	-podman stop rosti-snapshots
 | 
						|
	-podman rm rosti-snapshots
 |