2018-01-25 12:11:32 +01:00
|
|
|
SHELL = bash
|
2018-06-23 10:11:24 +02:00
|
|
|
BRANCH := $(or $(APPVEYOR_REPO_BRANCH),$(TRAVIS_BRANCH),$(shell git rev-parse --abbrev-ref HEAD))
|
2018-09-01 17:49:05 +02:00
|
|
|
LAST_TAG := $(shell git describe --tags --abbrev=0)
|
|
|
|
ifeq ($(BRANCH),$(LAST_TAG))
|
|
|
|
BRANCH := master
|
|
|
|
endif
|
2018-06-23 10:11:24 +02:00
|
|
|
TAG_BRANCH := -$(BRANCH)
|
|
|
|
BRANCH_PATH := branch/
|
|
|
|
ifeq ($(subst HEAD,,$(subst master,,$(BRANCH))),)
|
|
|
|
TAG_BRANCH :=
|
|
|
|
BRANCH_PATH :=
|
|
|
|
endif
|
|
|
|
TAG := $(shell echo $$(git describe --abbrev=8 --tags | sed 's/-\([0-9]\)-/-00\1-/; s/-\([0-9][0-9]\)-/-0\1-/'))$(TAG_BRANCH)
|
2014-07-03 22:43:14 +02:00
|
|
|
NEW_TAG := $(shell echo $(LAST_TAG) | perl -lpe 's/v//; $$_ += 0.01; $$_ = sprintf("v%.2f", $$_)')
|
2018-09-01 15:02:09 +02:00
|
|
|
ifneq ($(TAG),$(LAST_TAG))
|
|
|
|
TAG := $(TAG)-beta
|
|
|
|
endif
|
2016-10-04 18:10:20 +02:00
|
|
|
GO_VERSION := $(shell go version)
|
2016-10-31 16:50:02 +01:00
|
|
|
GO_FILES := $(shell go list ./... | grep -v /vendor/ )
|
2018-08-17 22:02:50 +02:00
|
|
|
# Run full tests if go >= go1.11
|
|
|
|
FULL_TESTS := $(shell go version | perl -lne 'print "go$$1.$$2" if /go(\d+)\.(\d+)/ && ($$1 > 1 || $$2 >= 11)')
|
2018-06-23 10:11:24 +02:00
|
|
|
BETA_PATH := $(BRANCH_PATH)$(TAG)
|
|
|
|
BETA_URL := https://beta.rclone.org/$(BETA_PATH)/
|
|
|
|
BETA_UPLOAD_ROOT := memstore:beta-rclone-org
|
|
|
|
BETA_UPLOAD := $(BETA_UPLOAD_ROOT)/$(BETA_PATH)
|
2017-05-19 16:46:13 +02:00
|
|
|
# Pass in GOTAGS=xyz on the make command line to set build tags
|
|
|
|
ifdef GOTAGS
|
|
|
|
BUILDTAGS=-tags "$(GOTAGS)"
|
|
|
|
endif
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2017-05-13 10:59:41 +02:00
|
|
|
.PHONY: rclone vars version
|
2017-02-27 12:53:03 +01:00
|
|
|
|
2014-07-19 14:12:20 +02:00
|
|
|
rclone:
|
2017-02-27 12:53:03 +01:00
|
|
|
touch fs/version.go
|
2017-05-19 16:46:13 +02:00
|
|
|
go install -v --ldflags "-s -X github.com/ncw/rclone/fs.Version=$(TAG)" $(BUILDTAGS)
|
2017-02-27 12:53:03 +01:00
|
|
|
cp -av `go env GOPATH`/bin/rclone .
|
2014-07-19 14:12:20 +02:00
|
|
|
|
2016-09-08 09:04:13 +02:00
|
|
|
vars:
|
|
|
|
@echo SHELL="'$(SHELL)'"
|
2018-06-23 10:11:24 +02:00
|
|
|
@echo BRANCH="'$(BRANCH)'"
|
2016-09-08 09:04:13 +02:00
|
|
|
@echo TAG="'$(TAG)'"
|
|
|
|
@echo LAST_TAG="'$(LAST_TAG)'"
|
|
|
|
@echo NEW_TAG="'$(NEW_TAG)'"
|
2016-10-04 18:10:20 +02:00
|
|
|
@echo GO_VERSION="'$(GO_VERSION)'"
|
2018-01-26 13:02:44 +01:00
|
|
|
@echo FULL_TESTS="'$(FULL_TESTS)'"
|
2016-10-08 12:23:21 +02:00
|
|
|
@echo BETA_URL="'$(BETA_URL)'"
|
2016-09-08 09:04:13 +02:00
|
|
|
|
2017-05-13 10:59:41 +02:00
|
|
|
version:
|
|
|
|
@echo '$(TAG)'
|
|
|
|
|
2016-07-13 13:25:19 +02:00
|
|
|
# Full suite of integration tests
|
2014-07-19 14:12:20 +02:00
|
|
|
test: rclone
|
2018-10-25 09:36:09 +02:00
|
|
|
go install --ldflags "-s -X github.com/ncw/rclone/fs.Version=$(TAG)" $(BUILDTAGS) github.com/ncw/rclone/fstest/test_all
|
2018-09-29 15:48:29 +02:00
|
|
|
-test_all 2>&1 | tee test_all.log
|
|
|
|
@echo "Written logs in test_all.log"
|
2014-03-28 23:34:13 +01:00
|
|
|
|
2016-07-13 13:25:19 +02:00
|
|
|
# Quick test
|
|
|
|
quicktest:
|
2017-05-19 16:46:13 +02:00
|
|
|
RCLONE_CONFIG="/notfound" go test $(BUILDTAGS) $(GO_FILES)
|
2018-01-26 13:02:44 +01:00
|
|
|
ifdef FULL_TESTS
|
2017-05-19 16:46:13 +02:00
|
|
|
RCLONE_CONFIG="/notfound" go test $(BUILDTAGS) -cpu=2 -race $(GO_FILES)
|
2017-06-19 09:07:50 +02:00
|
|
|
endif
|
2016-07-13 13:25:19 +02:00
|
|
|
|
|
|
|
# Do source code quality checks
|
2015-09-22 19:47:16 +02:00
|
|
|
check: rclone
|
2018-01-26 13:02:44 +01:00
|
|
|
ifdef FULL_TESTS
|
2017-08-29 15:22:07 +02:00
|
|
|
go vet $(BUILDTAGS) -printfuncs Debugf,Infof,Logf,Errorf ./...
|
2017-12-03 13:04:37 +01:00
|
|
|
errcheck $(BUILDTAGS) ./...
|
2016-10-31 16:50:02 +01:00
|
|
|
find . -name \*.go | grep -v /vendor/ | xargs goimports -d | grep . ; test $$? -eq 1
|
2017-12-03 13:04:37 +01:00
|
|
|
go list ./... | xargs -n1 golint | grep -E -v '(StorageUrl|CdnUrl)' ; test $$? -eq 1
|
2016-10-04 18:10:20 +02:00
|
|
|
else
|
2018-01-26 13:02:44 +01:00
|
|
|
@echo Skipping source quality tests as version of go too old
|
2016-10-04 18:10:20 +02:00
|
|
|
endif
|
2015-09-22 19:47:16 +02:00
|
|
|
|
2018-05-04 16:19:07 +02:00
|
|
|
gometalinter_install:
|
|
|
|
go get -u github.com/alecthomas/gometalinter
|
|
|
|
gometalinter --install --update
|
|
|
|
|
|
|
|
# We aren't using gometalinter as the default linter yet because
|
|
|
|
# 1. it doesn't support build tags: https://github.com/alecthomas/gometalinter/issues/275
|
|
|
|
# 2. can't get -printfuncs working with the vet linter
|
|
|
|
gometalinter:
|
|
|
|
gometalinter ./...
|
|
|
|
|
2016-07-13 13:25:19 +02:00
|
|
|
# Get the build dependencies
|
|
|
|
build_dep:
|
2018-01-26 13:02:44 +01:00
|
|
|
ifdef FULL_TESTS
|
2016-07-13 13:25:19 +02:00
|
|
|
go get -u github.com/kisielk/errcheck
|
|
|
|
go get -u golang.org/x/tools/cmd/goimports
|
2018-10-12 12:35:35 +02:00
|
|
|
go get -u golang.org/x/lint/golint
|
2016-10-04 18:10:20 +02:00
|
|
|
endif
|
2016-07-13 13:25:19 +02:00
|
|
|
|
2018-03-23 13:42:44 +01:00
|
|
|
# Get the release dependencies
|
|
|
|
release_dep:
|
2018-04-28 15:21:30 +02:00
|
|
|
go get -u github.com/goreleaser/nfpm/...
|
2018-04-28 13:38:30 +02:00
|
|
|
go get -u github.com/aktau/github-release
|
2018-03-23 13:42:44 +01:00
|
|
|
|
2016-07-13 13:25:19 +02:00
|
|
|
# Update dependencies
|
|
|
|
update:
|
2018-08-28 16:30:47 +02:00
|
|
|
GO111MODULE=on go get -u ./...
|
2018-09-21 16:46:48 +02:00
|
|
|
GO111MODULE=on go mod tidy
|
|
|
|
GO111MODULE=on go mod vendor
|
2016-07-13 13:25:19 +02:00
|
|
|
|
2018-09-01 11:19:03 +02:00
|
|
|
doc: rclone.1 MANUAL.html MANUAL.txt rcdocs commanddocs
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2015-06-06 11:05:21 +02:00
|
|
|
rclone.1: MANUAL.md
|
|
|
|
pandoc -s --from markdown --to man MANUAL.md -o rclone.1
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2018-10-01 21:48:54 +02:00
|
|
|
MANUAL.md: bin/make_manual.py docs/content/*.md commanddocs backenddocs
|
2016-10-04 12:37:31 +02:00
|
|
|
./bin/make_manual.py
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2015-06-06 11:05:21 +02:00
|
|
|
MANUAL.html: MANUAL.md
|
|
|
|
pandoc -s --from markdown --to html MANUAL.md -o MANUAL.html
|
|
|
|
|
|
|
|
MANUAL.txt: MANUAL.md
|
|
|
|
pandoc -s --from markdown --to plain MANUAL.md -o MANUAL.txt
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2016-08-03 22:36:28 +02:00
|
|
|
commanddocs: rclone
|
|
|
|
rclone gendocs docs/content/commands/
|
|
|
|
|
2018-10-01 21:48:54 +02:00
|
|
|
backenddocs: rclone bin/make_backend_docs.py
|
|
|
|
./bin/make_backend_docs.py
|
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
rcdocs: rclone
|
|
|
|
bin/make_rc_docs.sh
|
|
|
|
|
2014-04-24 19:11:08 +02:00
|
|
|
install: rclone
|
|
|
|
install -d ${DESTDIR}/usr/bin
|
2014-07-19 14:12:20 +02:00
|
|
|
install -t ${DESTDIR}/usr/bin ${GOPATH}/bin/rclone
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2014-03-28 23:34:13 +01:00
|
|
|
clean:
|
2014-04-24 19:11:08 +02:00
|
|
|
go clean ./...
|
2014-03-28 23:34:13 +01:00
|
|
|
find . -name \*~ | xargs -r rm -f
|
2014-04-17 23:32:39 +02:00
|
|
|
rm -rf build docs/public
|
2018-01-16 12:21:12 +01:00
|
|
|
rm -f rclone fs/operations/operations.test fs/sync/sync.test fs/test_all.log test.log
|
2014-03-28 23:34:13 +01:00
|
|
|
|
|
|
|
website:
|
2014-04-17 23:32:39 +02:00
|
|
|
cd docs && hugo
|
2014-03-28 23:34:13 +01:00
|
|
|
|
|
|
|
upload_website: website
|
2014-07-19 14:12:20 +02:00
|
|
|
rclone -v sync docs/public memstore:www-rclone-org
|
2014-03-28 23:34:13 +01:00
|
|
|
|
2018-03-17 16:06:04 +01:00
|
|
|
tarball:
|
2018-04-02 11:56:13 +02:00
|
|
|
git archive -9 --format=tar.gz --prefix=rclone-$(TAG)/ -o build/rclone-$(TAG).tar.gz $(TAG)
|
2018-03-17 16:06:04 +01:00
|
|
|
|
|
|
|
sign_upload:
|
2018-04-28 15:59:40 +02:00
|
|
|
cd build && md5sum rclone-v* | gpg --clearsign > MD5SUMS
|
|
|
|
cd build && sha1sum rclone-v* | gpg --clearsign > SHA1SUMS
|
|
|
|
cd build && sha256sum rclone-v* | gpg --clearsign > SHA256SUMS
|
2018-03-17 16:06:04 +01:00
|
|
|
|
|
|
|
check_sign:
|
|
|
|
cd build && gpg --verify MD5SUMS && gpg --decrypt MD5SUMS | md5sum -c
|
|
|
|
cd build && gpg --verify SHA1SUMS && gpg --decrypt SHA1SUMS | sha1sum -c
|
|
|
|
cd build && gpg --verify SHA256SUMS && gpg --decrypt SHA256SUMS | sha256sum -c
|
|
|
|
|
2014-03-28 23:34:13 +01:00
|
|
|
upload:
|
2018-09-01 19:22:19 +02:00
|
|
|
rclone -P copy build/ memstore:downloads-rclone-org/$(TAG)
|
|
|
|
rclone lsf build --files-only --include '*.{zip,deb,rpm}' --include version.txt | xargs -i bash -c 'i={}; j="$$i"; [[ $$i =~ (.*)(-v[0-9\.]+-)(.*) ]] && j=$${BASH_REMATCH[1]}-current-$${BASH_REMATCH[3]}; rclone copyto -v "memstore:downloads-rclone-org/$(TAG)/$$i" "memstore:downloads-rclone-org/$$j"'
|
2014-03-28 23:34:13 +01:00
|
|
|
|
2015-11-23 22:58:54 +01:00
|
|
|
upload_github:
|
2016-10-04 12:37:31 +02:00
|
|
|
./bin/upload-github $(TAG)
|
2015-11-23 22:58:54 +01:00
|
|
|
|
2014-04-24 19:11:08 +02:00
|
|
|
cross: doc
|
2017-05-19 16:46:13 +02:00
|
|
|
go run bin/cross-compile.go -release current $(BUILDTAGS) $(TAG)
|
2014-03-28 23:34:13 +01:00
|
|
|
|
2016-02-21 11:29:48 +01:00
|
|
|
beta:
|
2018-09-01 15:02:09 +02:00
|
|
|
go run bin/cross-compile.go $(BUILDTAGS) $(TAG)
|
|
|
|
rclone -v copy build/ memstore:pub-rclone-org/$(TAG)
|
|
|
|
@echo Beta release ready at https://pub.rclone.org/$(TAG)/
|
2015-11-11 17:55:49 +01:00
|
|
|
|
2017-05-13 10:59:41 +02:00
|
|
|
log_since_last_release:
|
|
|
|
git log $(LAST_TAG)..
|
|
|
|
|
2017-08-05 00:20:26 +02:00
|
|
|
compile_all:
|
2018-01-26 13:02:44 +01:00
|
|
|
ifdef FULL_TESTS
|
2018-09-01 15:02:09 +02:00
|
|
|
go run bin/cross-compile.go -parallel 8 -compile-only $(BUILDTAGS) $(TAG)
|
2017-08-05 00:20:26 +02:00
|
|
|
else
|
2018-01-26 13:02:44 +01:00
|
|
|
@echo Skipping compile all as version of go too old
|
2017-08-05 00:20:26 +02:00
|
|
|
endif
|
|
|
|
|
2018-02-20 16:11:41 +01:00
|
|
|
appveyor_upload:
|
2018-06-23 10:11:24 +02:00
|
|
|
rclone --config bin/travis.rclone.conf -v copy --exclude '*beta-latest*' build/ $(BETA_UPLOAD)
|
|
|
|
ifndef BRANCH_PATH
|
|
|
|
rclone --config bin/travis.rclone.conf -v copy --include '*beta-latest*' --include version.txt build/ $(BETA_UPLOAD_ROOT)
|
2018-02-20 16:11:41 +01:00
|
|
|
endif
|
|
|
|
@echo Beta release ready at $(BETA_URL)
|
|
|
|
|
2018-06-22 10:52:16 +02:00
|
|
|
BUILD_FLAGS := -exclude "^(windows|darwin)/"
|
|
|
|
ifeq ($(TRAVIS_OS_NAME),osx)
|
|
|
|
BUILD_FLAGS := -include "^darwin/" -cgo
|
|
|
|
endif
|
|
|
|
|
2016-10-04 18:10:20 +02:00
|
|
|
travis_beta:
|
2018-06-22 10:52:16 +02:00
|
|
|
ifeq ($(TRAVIS_OS_NAME),linux)
|
2018-02-26 12:24:56 +01:00
|
|
|
go run bin/get-github-release.go -extract nfpm goreleaser/nfpm 'nfpm_.*_Linux_x86_64.tar.gz'
|
2018-06-22 10:52:16 +02:00
|
|
|
endif
|
2017-02-20 18:08:07 +01:00
|
|
|
git log $(LAST_TAG).. > /tmp/git-log.txt
|
2018-09-01 15:02:09 +02:00
|
|
|
go run bin/cross-compile.go -release beta-latest -git-log /tmp/git-log.txt $(BUILD_FLAGS) -parallel 8 $(BUILDTAGS) $(TAG)
|
2018-06-23 10:11:24 +02:00
|
|
|
rclone --config bin/travis.rclone.conf -v copy --exclude '*beta-latest*' build/ $(BETA_UPLOAD)
|
|
|
|
ifndef BRANCH_PATH
|
|
|
|
rclone --config bin/travis.rclone.conf -v copy --include '*beta-latest*' --include version.txt build/ $(BETA_UPLOAD_ROOT)
|
2018-02-20 16:11:41 +01:00
|
|
|
endif
|
2016-10-08 12:23:21 +02:00
|
|
|
@echo Beta release ready at $(BETA_URL)
|
2016-10-04 18:10:20 +02:00
|
|
|
|
2018-09-01 11:19:03 +02:00
|
|
|
# Fetch the binary builds from travis and appveyor
|
|
|
|
fetch_binaries:
|
2018-09-01 19:22:19 +02:00
|
|
|
rclone -P sync $(BETA_UPLOAD) build/
|
2017-07-22 19:16:46 +02:00
|
|
|
|
2016-01-16 15:10:57 +01:00
|
|
|
serve: website
|
2014-04-17 23:32:39 +02:00
|
|
|
cd docs && hugo server -v -w
|
2014-04-24 19:11:08 +02:00
|
|
|
|
2016-01-31 18:50:13 +01:00
|
|
|
tag: doc
|
2014-04-24 19:11:08 +02:00
|
|
|
@echo "Old tag is $(LAST_TAG)"
|
|
|
|
@echo "New tag is $(NEW_TAG)"
|
2017-03-18 12:16:43 +01:00
|
|
|
echo -e "package fs\n\n// Version of rclone\nvar Version = \"$(NEW_TAG)\"\n" | gofmt > fs/version.go
|
2018-02-13 12:19:19 +01:00
|
|
|
echo -n "$(NEW_TAG)" > docs/layouts/partials/version.html
|
2018-03-07 16:18:13 +01:00
|
|
|
git tag -s -m "Version $(NEW_TAG)" $(NEW_TAG)
|
2018-08-27 13:18:35 +02:00
|
|
|
bin/make_changelog.py $(LAST_TAG) $(NEW_TAG) > docs/content/changelog.md.new
|
|
|
|
mv docs/content/changelog.md.new docs/content/changelog.md
|
2017-03-18 12:16:43 +01:00
|
|
|
@echo "Edit the new changelog in docs/content/changelog.md"
|
2018-08-27 13:18:35 +02:00
|
|
|
@echo "Then commit all the changes"
|
2015-06-06 11:05:21 +02:00
|
|
|
@echo git commit -m \"Version $(NEW_TAG)\" -a -v
|
2014-04-24 19:11:08 +02:00
|
|
|
@echo "And finally run make retag before make cross etc"
|
|
|
|
|
|
|
|
retag:
|
2018-03-07 16:18:13 +01:00
|
|
|
git tag -f -s -m "Version $(LAST_TAG)" $(LAST_TAG)
|
2017-03-18 12:30:04 +01:00
|
|
|
|
|
|
|
startdev:
|
2017-03-18 12:16:43 +01:00
|
|
|
echo -e "package fs\n\n// Version of rclone\nvar Version = \"$(LAST_TAG)-DEV\"\n" | gofmt > fs/version.go
|
|
|
|
git commit -m "Start $(LAST_TAG)-DEV development" fs/version.go
|
2014-07-26 18:18:29 +02:00
|
|
|
|
2017-05-12 11:03:35 +02:00
|
|
|
winzip:
|
|
|
|
zip -9 rclone-$(TAG).zip rclone.exe
|