frp/.circleci/config.yml

26 lines
476 B
YAML
Raw Normal View History

2020-11-20 18:04:44 +08:00
version: 2
jobs:
2020-11-20 20:06:58 +08:00
test1:
2020-11-20 18:04:44 +08:00
docker:
- image: circleci/golang:1.15-node
2020-11-20 20:06:58 +08:00
working_directory: /go/src/github.com/fatedier/frp
steps:
- checkout
- run: make
- run: make alltest
test2:
docker:
2020-11-20 18:04:44 +08:00
- image: circleci/golang:1.14-node
working_directory: /go/src/github.com/fatedier/frp
steps:
- checkout
- run: make
- run: make alltest
2020-11-20 20:06:58 +08:00
workflows:
version: 2
build_and_test:
jobs:
- test1
- test2