Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dbb86dd

Browse files
committed
Fix verify_tag build stage in Travis pipeline
1 parent 31fb715 commit dbb86dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- stage: verify-tag
1616
python: 3.7
1717
script: >
18-
[ "v$(python -c 'import kubernetes ; print(kubernetes.__version__)')" == "${TRAVIS_TAG}" ] &&
18+
[ "v$(python -c 'from scripts.constants import CLIENT_VERSION; print(CLIENT_VERSION)')" == "${TRAVIS_TAG}" ] &&
1919
[[ "${TRAVIS_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(([ab]|dev|rc)[0-9]+)?$ ]]
2020
- stage: test
2121
python: 2.7

0 commit comments

Comments
 (0)