You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
221 B
12 lines
221 B
version: 2
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: golang:1.13
|
|
working_directory: /go/src/github.com/pingcap/tidb
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: "Build & Test"
|
|
command: make dev
|
|
|