Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Elastic Agent] Add skeleton for client/server for agent control protocol #20163

Merged
merged 9 commits into from
Jul 30, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove CI changes.
blakerouse committed Jul 28, 2020
commit 3874dc5168c4e6b96db9f9597baa9ad0d333edc4
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -265,19 +265,13 @@ jobs:
# Agent
- os: linux
before_install: .ci/scripts/travis_has_changes.sh x-pack/elastic-agent libbeat || travis_terminate 0
install:
- go get github.com/golang/protobuf/proto
- go get github.com/golang/protobuf/protoc-gen-go
env:
- PROJECT=x-pack/elastic-agent
- MAGE='build test'
go: $TRAVIS_GO_VERSION
stage: test
- os: osx
before_install: .ci/scripts/travis_has_changes.sh x-pack/elastic-agent libbeat || travis_terminate 0
install:
- go get github.com/golang/protobuf/proto
- go get github.com/golang/protobuf/protoc-gen-go
env:
- PROJECT=x-pack/elastic-agent
- MAGE='build unitTest'
2 changes: 0 additions & 2 deletions x-pack/elastic-agent/Dockerfile
Original file line number Diff line number Diff line change
@@ -5,8 +5,6 @@ FROM circleci/golang:${GO_VERSION}
ARG TEST_RESULTS=/tmp/test-results

RUN mkdir -p ${TEST_RESULTS} && mkdir -p ./code
RUN go get github.com/golang/protobuf/proto
RUN go get github.com/golang/protobuf/protoc-gen-go
RUN go get github.com/magefile/mage

ENV GO111MODULE=on
2 changes: 1 addition & 1 deletion x-pack/elastic-agent/magefile.go
Original file line number Diff line number Diff line change
@@ -331,7 +331,7 @@ func commitID() string {

// Update is an alias for executing control protocol, configs, and specs.
func Update() {
mg.SerialDeps(ControlProto, Config, BuildSpec, BuildFleetCfg)
mg.SerialDeps(Config, BuildSpec, BuildFleetCfg)
}

// CrossBuild cross-builds the beat for all target platforms.