adding gitlab web
This commit is contained in:
parent
14a494bac2
commit
73bc416afd
|
@ -0,0 +1,29 @@
|
|||
stages:
|
||||
- build-stuff
|
||||
|
||||
pages:
|
||||
stage: build-stuff
|
||||
script:
|
||||
- export CURRENT_BUILD_PATH=$(pwd)
|
||||
- echo $PATH
|
||||
- rm -rf $HOME/golang
|
||||
- rm -rf $HOME/gopath
|
||||
- mkdir -p $HOME/golang # for GOROOT (contains the Go binary & core packages)
|
||||
- mkdir -p $HOME/gopath # for GOPATH (contains code and external packages)
|
||||
- curl http://storage.googleapis.com/golang/go1.7.1.linux-amd64.tar.gz 2>/dev/null > go1.7.1.linux-amd64.tar.gz
|
||||
- tar -C $HOME/golang -xzf go1.7.1.linux-amd64.tar.gz
|
||||
- export GOROOT=$HOME/golang/go
|
||||
- export GOPATH=$HOME/gopath
|
||||
- export PATH=$PATH:$GOROOT/bin
|
||||
- export PATH=$PATH:$GOPATH/bin
|
||||
- (if [[ "$(go version)" == *"go version go1.7"* ]]; then echo "✓ Go binary installed!"; else echo "Go binary not installed"; exit -1; fi);
|
||||
- go version
|
||||
- echo $PATH
|
||||
- go env
|
||||
- which go
|
||||
- cd $CURRENT_BUILD_PATH
|
||||
- make
|
||||
- mv web public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
12
web/Makefile
12
web/Makefile
|
@ -1,4 +1,14 @@
|
|||
all: togoist.go web.go
|
||||
all: togoist
|
||||
|
||||
.PHONY: dependencies
|
||||
|
||||
dependencies:
|
||||
go get -u github.com/gopherjs/gopherjs
|
||||
go get -u github.com/bep/debounce
|
||||
go get -u github.com/gopherjs/jquery
|
||||
go get -u gitlab.com/chrissexton/togoist
|
||||
|
||||
togoist: togoist.go web.go dependencies
|
||||
@go generate
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Reference in New Issue