Browse Source

add .circleci

fatedier 4 years ago
parent
commit
16cabf4127
2 changed files with 12 additions and 12 deletions
  1. 12 0
      .circleci/config.yaml
  2. 0 12
      .travis.yml

+ 12 - 0
.circleci/config.yaml

@@ -0,0 +1,12 @@
+version: 2
+jobs:
+  build:
+    docker:
+      - image: circleci/golang:1.15-node
+      - image: circleci/golang:1.14-node
+    working_directory: /go/src/github.com/fatedier/frp
+    parallelism: 2
+    steps:
+      - checkout
+      - run: make
+      - run: make alltest

+ 0 - 12
.travis.yml

@@ -1,12 +0,0 @@
-sudo: false
-language: go
-
-go:
-    - 1.14.x
-    - 1.15.x
-
-install:
-    - make
-
-script:
-    - make alltest