mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-07-28 05:19:57 +00:00
AUTH-1941: Adds initial SSH server implementation
This commit is contained in:

committed by
Michael Borkenstein

parent
5da2109811
commit
e9c9bf3cbd
26
vendor/github.com/gliderlabs/ssh/circle.yml
generated
vendored
Normal file
26
vendor/github.com/gliderlabs/ssh/circle.yml
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
version: 2
|
||||
jobs:
|
||||
build-go-latest:
|
||||
docker:
|
||||
- image: golang:latest
|
||||
working_directory: /go/src/github.com/gliderlabs/ssh
|
||||
steps:
|
||||
- checkout
|
||||
- run: go get
|
||||
- run: go test -v -race
|
||||
|
||||
build-go-1.9:
|
||||
docker:
|
||||
- image: golang:1.9
|
||||
working_directory: /go/src/github.com/gliderlabs/ssh
|
||||
steps:
|
||||
- checkout
|
||||
- run: go get
|
||||
- run: go test -v -race
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
build:
|
||||
jobs:
|
||||
- build-go-latest
|
||||
- build-go-1.9
|
Reference in New Issue
Block a user