Skip to content

Commit

Permalink
Fix tests binary release
Browse files Browse the repository at this point in the history
The tests binary was not attached to the release because we never built
it when we ran a release job.

Signed-off-by: Daniel Belenky <[email protected]>
  • Loading branch information
Daniel Belenky committed Aug 19, 2020
1 parent 4d5a600 commit 3a21304
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ deploy:
on:
tags: true
condition: $TRAVIS_CPU_ARCH = amd64
- provider: script
script: make build-functests
skip_cleanup: true
on:
branch: master
condition: $TRAVIS_CPU_ARCH = amd64
- provider: releases
skip_cleanup: true
api_key:
Expand Down
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ go-test: go-build

test: bazel-test

functest:
build-functests:
hack/dockerized "hack/build-func-tests.sh"

functest: build-functests
hack/functests.sh

dump: bazel-build
Expand Down Expand Up @@ -175,4 +177,5 @@ bump-kubevirtci:
cluster-deploy \
cluster-sync \
olm-verify \
olm-push
olm-push \
build-functests

0 comments on commit 3a21304

Please sign in to comment.