You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frp/.circleci/config.yml

26 lines
476 B
YAML

4 years ago
version: 2
jobs:
4 years ago
test1:
4 years ago
docker:
- image: circleci/golang:1.15-node
4 years ago
working_directory: /go/src/github.com/fatedier/frp
steps:
- checkout
- run: make
- run: make alltest
test2:
docker:
4 years ago
- image: circleci/golang:1.14-node
working_directory: /go/src/github.com/fatedier/frp
steps:
- checkout
- run: make
- run: make alltest
4 years ago
workflows:
version: 2
build_and_test:
jobs:
- test1
- test2