36 lines
1.7 KiB
YAML
36 lines
1.7 KiB
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
machine: true
|
|
environment:
|
|
# PROJECT_GO_PACKAGE: github.com/anacrolix/torrent
|
|
# Should use PROJECT_GO_PACKAGE here but it's not interpolated for this
|
|
# field. https://discuss.circleci.com/t/environment-variable-expansion-in-
|
|
# working-directory/11322/4
|
|
# working_directory: ~/go/src/github.com/anacrolix/torrent
|
|
steps:
|
|
# - run: echo $PROJECT_GO_PACKAGE
|
|
- run: echo $CIRCLE_WORKING_DIRECTORY
|
|
- run: echo $PWD
|
|
- run: echo 'export GOPATH=$HOME/go' >> $BASH_ENV
|
|
- run: echo 'export PATH="$GOPATH/bin:$PATH"' >> $BASH_ENV
|
|
- run: echo $GOPATH
|
|
- run: go version
|
|
- run: cd /usr/local && sudo rm -r go && sudo mkdir go go1.4 && sudo chown `whoami` go go1.4 && git clone git://github.com/golang/go && cd go && git branch -f -t go1.4 origin/release-branch.go1.4 && cd .. && git clone --single-branch -b go1.4 go go1.4 && cd go1.4/src && ./make.bash && cd ../../go/src && GOROOT_BOOTSTRAP=/usr/local/go1.4 ./make.bash
|
|
- run: go version
|
|
- checkout
|
|
- run: sudo apt-get update
|
|
- run: sudo apt install fuse pv
|
|
# - run: go get -t -d -v -race $PROJECT_GO_PACKAGE/...
|
|
- run: go test -v -race ./... -count 2
|
|
- run: go test -bench . ./...
|
|
# - run: CGO_ENABLED=0 go get -t -d -v $PROJECT_GO_PACKAGE/...
|
|
- run: set +e; CGO_ENABLED=0 go test -v ./...; true
|
|
- run: go install golang.org/x/mobile/cmd/gomobile
|
|
- run: gomobile init
|
|
- run: gomobile build -target=android $PROJECT_GO_PACKAGE
|
|
# - run: GO111MODULE=off go install github.com/anacrolix/godo
|
|
- run: go install ./cmd/torrentfs
|
|
- run: sudo modprobe fuse
|
|
- run: fs/test.sh
|