2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/.circleci/config.yml

70 lines
2.3 KiB
YAML
Raw Normal View History

version: 2
jobs:
build:
2017-08-29 14:02:30 +10:00
machine: true
environment:
2018-07-25 18:57:49 +10:00
# PROJECT_GO_PACKAGE: github.com/anacrolix/torrent
2017-08-29 14:02:30 +10:00
# 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
2018-07-25 18:57:49 +10:00
# working_directory: ~/go/src/github.com/anacrolix/torrent
steps:
2018-07-25 18:57:49 +10:00
# - run: echo $PROJECT_GO_PACKAGE
2017-08-29 14:02:30 +10:00
- run: echo $CIRCLE_WORKING_DIRECTORY
- run: echo $PWD
2019-01-08 16:37:40 +11:00
- run: echo $GOPATH
2017-08-29 14:02:30 +10:00
- run: echo 'export GOPATH=$HOME/go' >> $BASH_ENV
- run: echo 'export PATH="$GOPATH/bin:$PATH"' >> $BASH_ENV
- run: echo $GOPATH
2019-01-08 16:37:40 +11:00
- run: which go
2017-08-29 14:02:30 +10:00
- run: go version
- run: |
cd /usr/local
sudo mkdir go.master
sudo chown `whoami` go.master
- restore_cache:
key: go-root-
- run: |
cd /usr/local
git clone git://github.com/golang/go go.master || true
cd go.master
git pull
[[ -x bin/go && `git rev-parse HEAD` == `cat anacrolix.built` ]] && exit
cd src
./make.bash || exit
git rev-parse HEAD > ../anacrolix.built
- save_cache:
paths: /usr/local/go.master
key: go-root-{{ checksum "/usr/local/go.master/anacrolix.built" }}
- run: echo 'export PATH="/usr/local/go.master/bin:$PATH"' >> $BASH_ENV
2017-08-29 14:02:30 +10:00
- run: go version
- checkout
2017-10-12 16:32:11 +11:00
- run: sudo apt-get update
2017-08-29 14:02:30 +10:00
- run: sudo apt install fuse pv
2019-01-08 16:57:33 +11:00
- restore_cache:
keys:
- go-pkg-
- restore_cache:
keys:
- go-cache-
2019-01-09 11:21:49 +11:00
- run: go get -d ./...
2018-07-25 18:57:49 +10:00
- run: go test -v -race ./... -count 2
- run: go test -bench . ./...
- 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
2018-07-25 20:34:19 +10:00
# - run: GO111MODULE=off go install github.com/anacrolix/godo
2018-07-27 10:44:26 +10:00
- run: go install ./cmd/torrentfs
2019-01-08 16:57:33 +11:00
- save_cache:
key: go-pkg-{{ checksum "go.mod" }}
paths:
2019-01-09 11:23:07 +11:00
- ~/go/pkg
2017-08-29 14:02:30 +10:00
- run: sudo modprobe fuse
- run: fs/test.sh
- save_cache:
key: go-cache-{{ .Revision }}
paths:
- ~/.cache/go-build
when: always