Skip to content

Commit

Permalink
Release VPP-Agent v2.3.1 (#1530)
Browse files Browse the repository at this point in the history
Release VPP-Agent v2.3.1

Co-authored-by: Andrii <[email protected]>
Co-authored-by: Ondrej Fabry <[email protected]>
  • Loading branch information
ondrej-fabry and Andrii authored Oct 18, 2019
2 parents 3fde291 + 22b28c4 commit 32d5117
Show file tree
Hide file tree
Showing 340 changed files with 47,756 additions and 2,461 deletions.
26 changes: 21 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
script: make test-cover
after_success:
- goveralls -coverprofile=/tmp/coverage.out -service=travis-ci
- bash <(curl -s https://codecov.io/bash) -f /tmp/coverage.out -F unittests

- stage: Build
script:
Expand All @@ -68,21 +69,36 @@ jobs:
script:
- make verify-binapi
- make integration-tests
- env: VPP_VERSION=2001
- env: VPP_VERSION=2001_324
script:
- make verify-binapi
- make integration-tests
- env: VPP_VERSION=2001_379
script:
- make verify-binapi
- make integration-tests

- stage: E2E
env: VPP_VERSION=1904
script:
- make e2e-tests
- make e2e-tests-cover
after_success:
- bash <(curl -s https://codecov.io/bash) -f /tmp/e2e-cov.out -F e2e1904
- env: VPP_VERSION=1908
script:
- make e2e-tests
- env: VPP_VERSION=2001
- make e2e-tests-cover
after_success:
- bash <(curl -s https://codecov.io/bash) -f /tmp/e2e-cov.out -F e2e1908
- env: VPP_VERSION=2001_324
script:
- make e2e-tests-cover
after_success:
- bash <(curl -s https://codecov.io/bash) -f /tmp/e2e-cov.out -F e2e2001-324
- env: VPP_VERSION=2001_379
script:
- make e2e-tests
- make e2e-tests-cover
after_success:
- bash <(curl -s https://codecov.io/bash) -f /tmp/e2e-cov.out -F e2e2001-379

notifications:
slack:
Expand Down
4 changes: 2 additions & 2 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ e2e-tests: ## Run end-to-end tests
@echo "=> running end-to-end tests"
VPP_IMG=$(VPP_IMG) ./tests/e2e/run_e2e.sh

e2e-tests-cover: ## Run end-to-end tests with coverage
@echo "=> running end-to-end tests with coverage"
VPP_IMG=$(VPP_IMG) COVER_DIR=$(COVER_DIR) ./tests/e2e/run_e2e.sh
@echo "=> coverage report generated into ${COVER_DIR}/e2e-cov.out"

# -------------------------------
# Code generation
# -------------------------------
Expand Down
Loading

0 comments on commit 32d5117

Please sign in to comment.