Skip to content

Commit

Permalink
Simpler version implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
kontsevoy committed Jun 15, 2016
1 parent 4dbb06c commit 828e6a7
Show file tree
Hide file tree
Showing 15 changed files with 98 additions and 737 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
gitref.go

# built web assets
web/dist/app/app

Expand Down
4 changes: 0 additions & 4 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

82 changes: 48 additions & 34 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Update these two variables, then run 'make setver'
VERSION=1.0.0
SUFFIX=stable
GITTAG=v$(VERSION)-$(SUFFIX)

# These are standard autotools variables, don't change them please
BUILDDIR ?= build
BINDIR ?= /usr/local/bin
DATADIR ?= /usr/local/share/teleport
ADDFLAGS ?=

GO15VENDOREXPERIMENT := 1
PKGPATH=github.com/gravitational/teleport
PWD ?= $(shell pwd)
ETCD_CERTS := $(realpath fixtures/certs)
ETCD_FLAGS := TELEPORT_TEST_ETCD_CONFIG='{"nodes": ["https://localhost:4001"], "key":"/teleport/test", "tls_key_file": "$(ETCD_CERTS)/proxy1-key.pem", "tls_cert_file": "$(ETCD_CERTS)/proxy1.pem", "tls_ca_file": "$(ETCD_CERTS)/ca.pem"}'
TELEPORT_DEBUG ?= no
RELEASE := teleport-$(GITTAG)-$(shell go env GOOS)-$(shell go env GOARCH)-bin
RELEASEDIR := $(BUILDDIR)/$(RELEASE)

export

$(eval BUILDFLAGS := $(ADDFLAGS) -ldflags -w)
Expand All @@ -18,41 +25,43 @@ $(eval BUILDFLAGS := $(ADDFLAGS) -ldflags -w)
# Default target: builds all 3 executables and plaaces them in a current directory
#
.PHONY: all
all: build

.PHONY: build
build: teleport tctl tsh assets
all: setver teleport tctl tsh assets

.PHONY: tctl
tctl:
go build -o $(BUILDDIR)/tctl -i $(BUILDFLAGS) $(PKGPATH)/tool/tctl
go build -o $(BUILDDIR)/tctl -i $(BUILDFLAGS) ./tool/tctl

.PHONY: teleport
teleport:
go build -o $(BUILDDIR)/teleport -i $(BUILDFLAGS) $(PKGPATH)/tool/teleport
go build -o $(BUILDDIR)/teleport -i $(BUILDFLAGS) ./tool/teleport

.PHONY: tsh
tsh:
go build -o $(BUILDDIR)/tsh -i $(BUILDFLAGS) $(PKGPATH)/tool/tsh
go build -o $(BUILDDIR)/tsh -i $(BUILDFLAGS) ./tool/tsh

#
# make install will installs system-wide teleport
#
.PHONY: install
install: build
sudo cp -f $(BUILDDIR)/tctl $(BINDIR)/
sudo cp -f $(BUILDDIR)/tsh $(BINDIR)/
sudo cp -f $(BUILDDIR)/teleport $(BINDIR)/
sudo mkdir -p $(DATADIR)
sudo cp -fr web/dist/* $(DATADIR)
@echo "\n** Make sure to run 'make install' as root! **\n"
cp -f $(BUILDDIR)/tctl $(BINDIR)/
cp -f $(BUILDDIR)/tsh $(BINDIR)/
cp -f $(BUILDDIR)/teleport $(BINDIR)/
mkdir -p $(DATADIR)
cp -fr web/dist/* $(DATADIR)

.PHONY: goinstall
goinstall:
go install $(BUILDFLAGS) $(PKGPATH)/tool/tctl
go install $(BUILDFLAGS) $(PKGPATH)/tool/teleport
go install $(BUILDFLAGS) $(PKGPATH)/tool/tsh
go install $(BUILDFLAGS) ./tool/tctl
go install $(BUILDFLAGS) ./tool/teleport
go install $(BUILDFLAGS) ./tool/tsh


.PHONY: clean
clean:
rm -rf $(BUILDDIR)
rm -rf teleport

.PHONY: assets
assets:
Expand Down Expand Up @@ -83,38 +92,43 @@ run-docs:
.PHONY: test
test: FLAGS ?= -cover
test:
go test -v $(PKGPATH)/tool/tsh/... \
$(PKGPATH)/lib/... \
$(PKGPATH)/tool/teleport... $(FLAGS) -tags test
go test -v ./tool/tsh/... \
./lib/... \
./tool/teleport... $(FLAGS) -tags test
go vet ./tool/... ./lib/...

#
# integration tests. need a TTY to work and not compatible with a race detector
#
.PHONY: integration
integration:
go test -v $(PKGPATH)/integration/...
go test -v ./integration/...


.PHONY: foo
foo:
$(MAKE) -f version.mk
# make setver - bump the version of teleport
# Reads the version from version.mk, updates version.go and
# assigns a git tag to the currently checked out tree
.PHONY: setver
setver:
$(MAKE) -f version.mk setver

# make settag - set a git tag with the current version from version.mk
.PHONY: settag
settag:
echo $(GITTAG)

#
# bianry-release releases binary distribution tarball for this particular version
#
.PHONY: binary-release
binary-release: LINKFLAGS := $(shell linkflags -verpkg=$(PKGPATH)/vendor/github.com/gravitational/version)
binary-release: RELEASE := teleport-$(shell linkflags --os-release)-bin
binary-release: RELEASEDIR := $(BUILDDIR)/$(RELEASE)
binary-release: build
sed 's_%BUILDFLAGS%_-ldflags "$(LINKFLAGS)"_' build.assets/release/Makefile > $(BUILDDIR)/Makefile
mkdir -p $(BUILDDIR)/$(RELEASE)/teleport/src/$(PKGPATH)/web $(BUILDDIR)/$(RELEASE)/teleport/build
cp -r $(BUILDDIR)/Makefile LICENSE README.md docs $(BUILDDIR)/$(RELEASE)/teleport
cp -r web/dist $(BUILDDIR)/$(RELEASE)/teleport/src/$(PKGPATH)/web
cp -af $(BUILDDIR)/tctl $(BUILDDIR)/tsh $(BUILDDIR)/teleport $(BUILDDIR)/$(RELEASE)/teleport/build
tar -czf $(BUILDDIR)/$(RELEASE).tar.gz -C $(BUILDDIR)/$(RELEASE) teleport
.PHONY: release
release: clean all
@rm -rf $(RELEASE)
mkdir $(RELEASE)
cp -r $(BUILDDIR)/* $(RELEASE)/
tar -czf $(RELEASE).tar.gz $(RELEASE)
@echo "\n\n"
@echo "CREATED: $(RELEASE)"
@echo "CREATED: $(RELEASE).tar.gz"


.PHONY: test-with-etcd
Expand Down
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,18 @@ Then you can run Teleport as a single-node cluster:
teleport start
```

## Why Build Teleport?
## Building Teleport

You need to have Golang v1.5 or newer.

Clone this repository into `$GOPATH/gravitational/teleport` and run `make`.

If you want to release your own Teleport version, edit this [Makefile](Makefile), update
`VERSION` and `SUFFIX` constants, then run `make setver` to update [version.go](version.go)

If you want to cut another binary release tarball, run `make release`.

## Why did We Build Teleport?

Mature tech companies with significant infrastructure footprints tend to implement most
of these patterns internally. Teleport allows smaller companies without
Expand Down
11 changes: 5 additions & 6 deletions lib/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"strconv"
"strings"

"github.com/gravitational/teleport"
"github.com/gravitational/trace"
"github.com/gravitational/version"
"github.com/pborman/uuid"
"golang.org/x/crypto/ssh"
)
Expand Down Expand Up @@ -155,12 +155,11 @@ func ReadOrMakeHostUUID(dataDir string) (string, error) {

// PrintVersion prints human readable version
func PrintVersion() {
ver := version.Get()
if ver.GitCommit != "" {
fmt.Printf("%v git:%v\n", ver.Version, ver.GitCommit)
} else {
fmt.Printf("%v\n", ver.Version)
ver := fmt.Sprintf("Teleport v%s-%s", teleport.Version, teleport.Suffix)
if teleport.Gitref != "" {
ver = fmt.Sprintf("%s git:%s", ver, teleport.Gitref)
}
fmt.Println(ver)
}

const (
Expand Down
Loading

0 comments on commit 828e6a7

Please sign in to comment.