Skip to content

Commit

Permalink
Merge pull request #735 from ondrej-fabry/release/v1.5
Browse files Browse the repository at this point in the history
Release vpp-agent v1.5
  • Loading branch information
VladoLavor authored Jul 16, 2018
2 parents 2e3a708 + 7a82a68 commit 4d7002f
Show file tree
Hide file tree
Showing 711 changed files with 27,831 additions and 11,341 deletions.
13 changes: 13 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.git/
.gitignore
.gtm/
.idea/
.travis.yml
*.md
LICENSE
docs/
examples/
k8s/
cmd/agentctl/agentctl
cmd/vpp-agent/vpp-agent
cmd/vpp-agent-ctl/vpp-agent-ctl
53 changes: 32 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
glide.lock
*.pyc
*.so
*.test
*.out

.idea/*
cmd/vpp-agent/vpp-agent
cmd/vpp-agent-grpc/vpp-agent-grpc
cmd/vpp-agent-ctl/vpp-agent-ctl
cmd/agentctl/agentctl
examples/govpp_call/govpp_call
examples/idx_bd_cache/idx_bd_cache
examples/idx_iface_cache/idx_iface_cache
examples/idx_mapping_lookup/idx_mapping_lookup
examples/idx_mapping_watcher/idx_mapping_watcher
examples/idx_veth_cache/idx_veth_cache
examples/localclient_linux/veth/veth
examples/localclient_linux/tap/tap
examples/localclient_vpp/plugins/plugins
examples/localclient_vpp/nat/nat
examples/grpc_vpp/remote_client/remote_client
examples/grpc_vpp/notifications/notifications
tests/perf/log
tests/perf/logresult.zip
tests/robot/variables/jozo_local_variables.robot
*.pyc

# command binaries
/cmd/agentctl/agentctl
/cmd/vpp-agent/vpp-agent
/cmd/vpp-agent-ctl/vpp-agent-ctl

# example binaries
/examples/govpp_call/govpp_call
/examples/grpc_vpp/notifications/notifications
/examples/grpc_vpp/remote_client/remote_client
/examples/idx_bd_cache/idx_bd_cache
/examples/idx_iface_cache/idx_iface_cache
/examples/idx_mapping_lookup/idx_mapping_lookup
/examples/idx_mapping_watcher/idx_mapping_watcher
/examples/idx_veth_cache/idx_veth_cache
/examples/localclient_linux/tap/tap
/examples/localclient_linux/veth/veth
/examples/localclient_vpp/nat/nat
/examples/localclient_vpp/plugins/plugins

# test results
/tests/perf/log
/tests/perf/logresult.zip
/tests/robot/variables/jozo_local_variables.robot

# vpp directory
/vpp/
38 changes: 29 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,58 @@
dist: trusty
sudo: required

language: go
go:
- "1.10.x"

go_import_path: github.com/ligato/vpp-agent

addons:
apt:
update: true

go_import_path: github.com/ligato/vpp-agent
update:
packages:
- npm

git:
depth: 1
depth: 10
submodules: false

go:
- 1.10.x

cache:
apt: true
directories:
- $HOME/.cache/go-build
- $HOME/build-cache
- $HOME/.npm
- $(npm config get prefix)/lib/node_modules

env:
- GO_BUILD_TAGS=mockvpp

before_install:
- make travis
- make get-linkcheck
- make get-linters
- make get-covtools
- go get -v github.com/mattn/goveralls
- make get-dep
- go get github.com/mattn/goveralls

script:
- make check-links || true
- make lint
- make dep-check
- make verify-binapi
- make
- make test-cover

after_success:
- goveralls -coverprofile=/tmp/coverage.out -service=travis-ci

notifications:
slack:
rooms:
- ligato:xLH4aTwGx1dexPaloAegQ74O
on_success: always
on_failure: always
template:
- "Build <%{build_url}|#%{build_number}> of *%{repository_slug}* on branch _%{branch}_ in PR: <%{pull_request_url}|#%{pull_request_number}>"
- "> `%{commit_subject}` _by %{author}_ (<%{compare_url}|%{commit}>)"
- "*%{message}* (_%{duration}_)"
Loading

0 comments on commit 4d7002f

Please sign in to comment.