You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| SHA := $(shell git rev-parse --short HEAD)
 | |
| 
 | |
| all: build
 | |
| 
 | |
| deps:
 | |
| 	# which npm && npm -g install uglify-js less
 | |
| 	go get github.com/GeertJohan/go.rice/rice
 | |
| 	go get github.com/franela/goblin
 | |
| 	go list github.com/drone/drone/... | xargs go get -t -v
 | |
| 
 | |
| test:
 | |
| 	go vet ./...
 | |
| 	go test -cover -short ./...
 | |
| 
 | |
| test_mysql:
 | |
| 	mysql -P 3306 --protocol=tcp -u root -e 'create database test;'
 | |
| 	TEST_DRIVER="mysql" TEST_DATASOURCE="root@tcp(127.0.0.1:3306)/test" go test -short github.com/drone/drone/server/datastore/database
 | |
| 
 | |
| test_postgres:
 | |
| 	TEST_DRIVER="postgres" TEST_DATASOURCE="host=127.0.0.1 user=postgres dbname=postgres sslmode=disable" go test -short github.com/drone/drone/server/datastore/database
 | |
| 
 | |
| build:
 | |
| 	go build -o debian/drone/usr/local/bin/drone  -ldflags "-X main.revision $(SHA)" github.com/drone/drone/cli
 | |
| 	go build -o debian/drone/usr/local/bin/droned -ldflags "-X main.revision $(SHA)" github.com/drone/drone/server
 | |
| 
 | |
| install:
 | |
| 	install -t /usr/local/bin debian/drone/usr/local/bin/drone 
 | |
| 	install -t /usr/local/bin debian/drone/usr/local/bin/droned 
 | |
| 
 | |
| run:
 | |
| 	@go run server/main.go --config=$$HOME/.drone/config.toml
 | |
| 
 | |
| clean:
 | |
| 	find . -name "*.out" -delete
 | |
| 	rm -f debian/drone/usr/local/bin/drone
 | |
| 	rm -f debian/drone/usr/local/bin/droned
 | |
| 	rm -f debian/drone.deb
 | |
| 	rm -f server/server
 | |
| 	rm -f cli/cli
 | |
| 
 | |
| lessc:
 | |
| 	lessc --clean-css server/app/styles/drone.less server/app/styles/drone.css
 | |
| 
 | |
| dpkg: build embed deb
 | |
| 
 | |
| # embeds content in go source code so that it is compiled
 | |
| # and packaged inside the go binary file.
 | |
| embed:
 | |
| 	rice --import-path="github.com/drone/drone/server" append --exec="debian/drone/usr/local/bin/droned"
 | |
| 
 | |
| # creates a debian package for drone to install
 | |
| # `sudo dpkg -i drone.deb`
 | |
| deb:
 | |
| 	mkdir -p debian/drone/usr/local/bin
 | |
| 	mkdir -p debian/drone/var/lib/drone
 | |
| 	dpkg-deb --build debian/drone
 | |
| 
 | |
| # deploys drone to a staging server. this requires the following
 | |
| # environment variables are set:
 | |
| #
 | |
| #   DRONE_STAGING_HOST -- the hostname or ip
 | |
| #   DRONE_STAGING_USER -- the username used to login
 | |
| #   DRONE_STAGING_KEY  -- the identity file path (~/.ssh/id_rsa)
 | |
| deploy:
 | |
| 	scp -i $$DRONE_STAGING_KEY debian/drone.deb $$DRONE_STAGING_USER@$$DRONE_STAGING_HOST:/tmp
 | |
| 	ssh -i $$DRONE_STAGING_KEY $$DRONE_STAGING_USER@$$DRONE_STAGING_HOST -- dpkg -i /tmp/drone.deb
 |